[ros-diffs] [rmessiant] 50426: [NTOS] - Fix a typo in the page fault handler that caused PDEs to be fixed up when they were in fact valid.

rmessiant at svn.reactos.org rmessiant at svn.reactos.org
Tue Jan 18 22:42:45 UTC 2011


Author: rmessiant
Date: Tue Jan 18 22:42:44 2011
New Revision: 50426

URL: http://svn.reactos.org/svn/reactos?rev=50426&view=rev
Log:
[NTOS]
- Fix a typo in the page fault handler that caused PDEs to be fixed up when they were in fact valid.

Modified:
    trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c

Modified: trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c?rev=50426&r1=50425&r2=50426&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] Tue Jan 18 22:42:44 2011
@@ -683,7 +683,7 @@
         //
         // Is the PDE valid?
         //
-        if (!PointerPde->u.Hard.Valid == 0)
+        if (PointerPde->u.Hard.Valid == 0)
         {
             //
             // Debug spew (eww!)




More information about the Ros-diffs mailing list