[NTOS:MM] Do not assert on a case we actually support

This commit is contained in:
Jérôme Gardou 2021-02-10 15:21:00 +01:00 committed by Jérôme Gardou
parent f12e6016b6
commit 0573de22a0

View file

@ -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));
}
//