mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
- Allocate memory from paged pool in EngAllocMem.
svn path=/trunk/; revision=9987
This commit is contained in:
parent
0c94f9e2c2
commit
05345c056a
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue