[NTOS]: Even after allowing ARM3 paged pool, we should still use the old allocator to free allocations made by the old allocator!

svn path=/trunk/; revision=47601
This commit is contained in:
Sir Richard 2010-06-05 19:32:46 +00:00
parent 5f1255ce5b
commit c28fc63bf4

View file

@ -763,8 +763,8 @@ ExFreePoolWithTag(IN PVOID P,
//
// Check for paged pool
//
if (!(AllowPagedPool) && ((P >= MmPagedPoolBase) &&
(P <= (PVOID)((ULONG_PTR)MmPagedPoolBase + MmPagedPoolSize))))
if ((P >= MmPagedPoolBase) &&
(P <= (PVOID)((ULONG_PTR)MmPagedPoolBase + MmPagedPoolSize)))
{
//
// Use old allocator