mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 20:19:26 +00:00
[NTOS:MM]
- Fix broken assert mistakenly added. By Jérôme, delayed at my request. Thanks. svn path=/trunk/; revision=63948
This commit is contained in:
parent
bd074499cb
commit
090134e9e6
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ MiDeletePte(IN PMMPTE PointerPte,
|
|||
{
|
||||
/* Prototype and paged out PTEs not supported yet */
|
||||
ASSERT(TempPte.u.Soft.Prototype == 0);
|
||||
ASSERT(TempPte.u.Soft.PageFileHigh == 0);
|
||||
ASSERT((TempPte.u.Soft.PageFileHigh == 0) || (TempPte.u.Soft.Transition == 1));
|
||||
|
||||
if (TempPte.u.Soft.Transition)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue