Author: tkreuzer
Date: Thu Mar 1 18:03:08 2012
New Revision: 55947
URL: http://svn.reactos.org/svn/reactos?rev=55947&view=rev
Log:
[NTOSKRNL]
Remove the broken ASSERT once again. Sigh...
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.…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] Thu Mar 1 18:03:08 2012
@@ -919,9 +919,6 @@
/* Right now, we only handle scenarios where the PDE is totally empty */
ASSERT(PointerPde->u.Long == 0);
- /* Right now, we expect a valid protection mask on the VAD */
- ASSERT(ProtectionCode != MM_NOACCESS);
-
/* And go dispatch the fault on the PDE. This should handle the demand-zero */
#if MI_TRACE_PFNS
UserPdeFault = TRUE;