mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[NTOS:MM] Fix one occurrence of MiDeletePte instead of MiDeletePde
This commit is contained in:
parent
c2e454b439
commit
c8ce0cc434
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ MmDeletePageFileMapping(
|
||||||
{
|
{
|
||||||
/* We can let it go */
|
/* We can let it go */
|
||||||
KIRQL OldIrql = MiAcquirePfnLock();
|
KIRQL OldIrql = MiAcquirePfnLock();
|
||||||
MiDeletePte(MiAddressToPte(PointerPte), PointerPte, Process, NULL);
|
MiDeletePde(MiPteToPde(PointerPte), Process);
|
||||||
MiReleasePfnLock(OldIrql);
|
MiReleasePfnLock(OldIrql);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue