- Revert r36337 because the callers don't depend on the memory being zeroed

svn path=/branches/aicom-network-fixes/; revision=36358
This commit is contained in:
Cameron Gutman 2008-09-20 21:29:31 +00:00
parent b7872654ed
commit 08288ba535

View file

@ -26,8 +26,6 @@ PVOID PoolAllocateBuffer(
Buffer = ExAllocatePool(NonPagedPool, Size);
RtlZeroMemory(Buffer, Size);
TI_DbgPrint(DEBUG_MEMORY, ("Allocated (%i) bytes at (0x%X).\n", Size, Buffer));
return Buffer;