mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 00:31:27 +00:00
[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:
parent
3bb511ea04
commit
665e8ea561
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue