mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
[NTOS]: Fix a typo spotted by Stefan.
svn path=/trunk/; revision=56296
This commit is contained in:
parent
d47bea186c
commit
c2d0cdfb0b
1 changed files with 1 additions and 1 deletions
|
@ -1130,7 +1130,7 @@ UserFault:
|
|||
MiCheckPdeForPagedPool(Address);
|
||||
#endif
|
||||
/* Has the code above changed anything -- is this now a valid PTE? */
|
||||
Status = (PointerPte->u.Hard.Valid == 1) ? STATUS_SUCCESS : STATUS_ACCESS_VIOLATION;
|
||||
Status = (PointerPde->u.Hard.Valid == 1) ? STATUS_SUCCESS : STATUS_ACCESS_VIOLATION;
|
||||
|
||||
/* Either this was a bogus VA or we've fixed up a paged pool PDE */
|
||||
MiUnlockProcessWorkingSet(CurrentProcess, CurrentThread);
|
||||
|
|
Loading…
Reference in a new issue