- 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:
Roel Messiant 2011-01-18 22:42:44 +00:00
parent 24ce794fa2
commit 05602c1b7e

View file

@ -683,7 +683,7 @@ MmArmAccessFault(IN BOOLEAN StoreInstruction,
//
// Is the PDE valid?
//
if (!PointerPde->u.Hard.Valid == 0)
if (PointerPde->u.Hard.Valid == 0)
{
//
// Debug spew (eww!)