mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Use NonPagedPool in EngAllocMem for now
svn path=/trunk/; revision=1099
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user