Use NonPagedPool in EngAllocMem for now
authorJason Filby <jason.filby@gmail.com>
Sun, 2 Apr 2000 12:44:57 +0000 (12:44 +0000)
committerJason Filby <jason.filby@gmail.com>
Sun, 2 Apr 2000 12:44:57 +0000 (12:44 +0000)
svn path=/trunk/; revision=1099

reactos/subsys/win32k/eng/mem.c

index 6c8300f..ffa2410 100644 (file)
@@ -15,7 +15,7 @@ PVOID STDCALL EngAllocMem(ULONG Flags, ULONG MemSize, ULONG Tag)
 {
    PVOID newMem;
 
-   newMem = ExAllocatePoolWithTag(PagedPool, MemSize, Tag);
+   newMem = ExAllocatePoolWithTag(NonPagedPool, MemSize, Tag); // FIXME: Use PagedPool when it is implemented
 
    if(Flags == FL_ZERO_MEMORY)
    {