[NTOSKRNL]

- Use proper macro for getting PDE from PTE.

svn path=/trunk/; revision=55582
This commit is contained in:
Jérôme Gardou 2012-02-13 19:09:10 +00:00
parent 283c4ef464
commit b4b1d63a78

View file

@ -240,7 +240,7 @@ MiDeletePte(IN PMMPTE PointerPte,
if (Pfn1->u3.e1.PrototypePte == 1)
{
/* Get the PDE and make sure it's faulted in */
PointerPde = MiAddressToPde(PointerPte);
PointerPde = MiPteToPde(PointerPte);
if (PointerPde->u.Hard.Valid == 0)
{
#if (_MI_PAGING_LEVELS == 2)