From 2b72f3d894d9bbe1566f6f62ad17740ea9a93b88 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Mon, 30 Sep 2002 20:52:23 +0000 Subject: [PATCH] Changed the allocation function from ExAllocatePool to ExAllocatePoolWithTag in ExpDefaultAllocate. svn path=/trunk/; revision=3579 --- reactos/ntoskrnl/ex/lookas.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ex/lookas.c b/reactos/ntoskrnl/ex/lookas.c index 1270552ca89..39310eda5bc 100644 --- a/reactos/ntoskrnl/ex/lookas.c +++ b/reactos/ntoskrnl/ex/lookas.c @@ -1,4 +1,4 @@ -/* $Id: lookas.c,v 1.6 2002/09/08 10:23:19 chorns Exp $ +/* $Id: lookas.c,v 1.7 2002/09/30 20:52:23 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -73,7 +73,7 @@ ExpDefaultAllocate(POOL_TYPE PoolType, * Pointer to allocated memory, or NULL if there is not enough free resources */ { - return ExAllocatePool(PoolType, NumberOfBytes); + return ExAllocatePoolWithTag(PoolType, NumberOfBytes, Tag); }