[NTOSKRNL:MM]

Only warn for unimplemented in ExAllocatePoolWithTagPriority() when memory allocation fails. For the rest, the caller has the memory it asked for.
Side note: we could also warn when caller wants to use special pool.

CORE-13334
CORE-11327

svn path=/trunk/; revision=74688
This commit is contained in:
Pierre Schweitzer 2017-05-28 10:22:30 +00:00
parent 7bb4b752e1
commit f61c6e1fbd

View file

@ -2589,11 +2589,18 @@ ExAllocatePoolWithTagPriority(IN POOL_TYPE PoolType,
IN ULONG Tag,
IN EX_POOL_PRIORITY Priority)
{
PVOID Buffer;
//
// Allocate the pool
//
UNIMPLEMENTED;
return ExAllocatePoolWithTag(PoolType, NumberOfBytes, Tag);
Buffer = ExAllocatePoolWithTag(PoolType, NumberOfBytes, Tag);
if (Buffer == NULL)
{
UNIMPLEMENTED;
}
return Buffer;
}
/*