mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 00:31:27 +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);
|
MiCheckPdeForPagedPool(Address);
|
||||||
#endif
|
#endif
|
||||||
/* Has the code above changed anything -- is this now a valid PTE? */
|
/* 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 */
|
/* Either this was a bogus VA or we've fixed up a paged pool PDE */
|
||||||
MiUnlockProcessWorkingSet(CurrentProcess, CurrentThread);
|
MiUnlockProcessWorkingSet(CurrentProcess, CurrentThread);
|
||||||
|
|
Loading…
Reference in a new issue