[NTOS:MM]

- Improve a DPRINT
CORE-7445

svn path=/trunk/; revision=60632
This commit is contained in:
Thomas Faber 2013-10-12 16:49:19 +00:00
parent 3c7c94a174
commit 3d1929a20d

View file

@ -69,7 +69,8 @@ MiCheckForUserStackOverflow(IN PVOID Address,
if ((Address >= StackBase) || (Address < DeallocationStack))
{
/* That's odd... */
DPRINT1("Faulting address outside of stack bounds\n");
DPRINT1("Faulting address outside of stack bounds. Address=%p, StackBase=%p, DeallocationStack=%p\n",
Address, StackBase, DeallocationStack);
return STATUS_GUARD_PAGE_VIOLATION;
}