[NTOS/MM]
authorJérôme Gardou <jerome.gardou@reactos.org>
Sun, 5 Oct 2014 09:57:02 +0000 (09:57 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Sun, 5 Oct 2014 09:57:02 +0000 (09:57 +0000)
 - Do not assert in case of stack overflow, just let the page fault handler raise STATUS_STACK_OVERFLOW

svn path=/trunk/; revision=64537

reactos/ntoskrnl/mm/ARM3/pagfault.c

index f78a445..89c2077 100644 (file)
@@ -82,7 +82,6 @@ MiCheckForUserStackOverflow(IN PVOID Address,
     {
         /* We don't -- Windows would try to make this guard page valid now */
         DPRINT1("Close to our death...\n");
-        ASSERT(FALSE);
         return STATUS_STACK_OVERFLOW;
     }