From 05345c056a9f9c8de5da0b1a2cad5fa54f4b33bd Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Sat, 3 Jul 2004 22:36:27 +0000 Subject: [PATCH] - Allocate memory from paged pool in EngAllocMem. svn path=/trunk/; revision=9987 --- reactos/subsys/win32k/eng/mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/eng/mem.c b/reactos/subsys/win32k/eng/mem.c index 61524e3a4ee..79ace46beca 100644 --- a/reactos/subsys/win32k/eng/mem.c +++ b/reactos/subsys/win32k/eng/mem.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: mem.c,v 1.16 2004/05/10 17:07:17 weiden Exp $ +/* $Id: mem.c,v 1.17 2004/07/03 22:36:27 navaraf Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -46,7 +46,7 @@ EngAllocMem(ULONG Flags, { PVOID newMem; - newMem = ExAllocatePoolWithTag(NonPagedPool, MemSize, Tag); // FIXME: Use PagedPool when it is implemented + newMem = ExAllocatePoolWithTag(PagedPool, MemSize, Tag); if (Flags == FL_ZERO_MEMORY && NULL != newMem) {