mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[NTOS]
- Fix a typo in the page fault handler that caused PDEs to be fixed up when they were in fact valid. svn path=/trunk/; revision=50426
This commit is contained in:
parent
24ce794fa2
commit
05602c1b7e
1 changed files with 1 additions and 1 deletions
|
@ -683,7 +683,7 @@ MmArmAccessFault(IN BOOLEAN StoreInstruction,
|
||||||
//
|
//
|
||||||
// Is the PDE valid?
|
// Is the PDE valid?
|
||||||
//
|
//
|
||||||
if (!PointerPde->u.Hard.Valid == 0)
|
if (PointerPde->u.Hard.Valid == 0)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Debug spew (eww!)
|
// Debug spew (eww!)
|
||||||
|
|
Loading…
Reference in a new issue