[NTOS]: Remove bogus assertion.

svn path=/trunk/; revision=45575
This commit is contained in:
Sir Richard 2010-02-11 18:33:52 +00:00
parent a2fa6b804c
commit 2cd1a22f66

View file

@ -1082,8 +1082,6 @@ MmPageOutPhysicalAddress(PFN_TYPE Page);
/* freelist.c **********************************************************/
#define ASSERT_PFN(x) ASSERT((x)->u3.e1.CacheAttribute != 0)
FORCEINLINE
PMMPFN
MiGetPfnEntry(IN PFN_TYPE Pfn)
@ -1100,9 +1098,6 @@ MiGetPfnEntry(IN PFN_TYPE Pfn)
/* Get the entry */
Page = &MmPfnDatabase[0][Pfn];
/* Make sure it's valid */
ASSERT_PFN(Page);
/* Return it */
return Page;
};