From: Sir Richard Date: Sat, 5 Jun 2010 19:32:46 +0000 (+0000) Subject: [NTOS]: Even after allowing ARM3 paged pool, we should still use the old allocator... X-Git-Tag: backups/header-work@57446~11^2~40 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=c28fc63bf4deb133ea6b98723260d2bbb24a5d5a;ds=sidebyside [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 --- 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