mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user