mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:35:59 +00:00
Use NonPagedPool in EngAllocMem for now
svn path=/trunk/; revision=1099
This commit is contained in:
parent
49f35db9e8
commit
b8d0ffaf38
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue