[NTOS/MM]

- Do not assert on transitions PTEs, we handle them just fine
ROSTESTS-155

svn path=/trunk/; revision=72494
This commit is contained in:
Jérôme Gardou 2016-08-28 19:59:13 +00:00
parent 3bb511ea04
commit 665e8ea561

View file

@ -194,9 +194,8 @@ MiAccessCheck(IN PMMPTE PointerPte,
/* Attached processes can't expand their stack */
if (KeIsAttachedProcess()) return STATUS_ACCESS_VIOLATION;
/* No support for transition PTEs yet */
ASSERT(((TempPte.u.Soft.Transition == 1) &&
(TempPte.u.Soft.Prototype == 0)) == FALSE);
/* No support for prototype PTEs yet */
ASSERT(TempPte.u.Soft.Prototype == 0);
/* Remove the guard page bit, and return a guard page violation */
TempPte.u.Soft.Protection = ProtectionMask & ~MM_GUARDPAGE;