From c28fc63bf4deb133ea6b98723260d2bbb24a5d5a Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Sat, 5 Jun 2010 19:32:46 +0000 Subject: [PATCH] [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 --- reactos/ntoskrnl/mm/ARM3/expool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/mm/ARM3/expool.c b/reactos/ntoskrnl/mm/ARM3/expool.c index a924abe7b56..c3d60b39387 100644 --- a/reactos/ntoskrnl/mm/ARM3/expool.c +++ b/reactos/ntoskrnl/mm/ARM3/expool.c @@ -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