[NTOS/MM]

- Do not assert in case of stack overflow, just let the page fault handler raise STATUS_STACK_OVERFLOW

svn path=/trunk/; revision=64537
This commit is contained in:
Jérôme Gardou 2014-10-05 09:57:02 +00:00
parent eb2da9430f
commit b80b707083

View 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;
}