mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[NTOS:MM] Do not assert on a case we actually support
This commit is contained in:
parent
f12e6016b6
commit
0573de22a0
1 changed files with 1 additions and 1 deletions
|
@ -5035,7 +5035,7 @@ NtAllocateVirtualMemory(IN HANDLE ProcessHandle,
|
|||
if (PointerPte->u.Soft.Valid == 0)
|
||||
{
|
||||
ASSERT(PointerPte->u.Soft.Prototype == 0);
|
||||
ASSERT(PointerPte->u.Soft.PageFileHigh == 0);
|
||||
ASSERT((PointerPte->u.Soft.PageFileHigh == 0) || (PointerPte->u.Soft.Transition == 1));
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue