- Allocate memory from paged pool in EngAllocMem.

svn path=/trunk/; revision=9987
This commit is contained in:
Filip Navara 2004-07-03 22:36:27 +00:00
parent 0c94f9e2c2
commit 05345c056a

View file

@ -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)
{