SeCaptureSecurityDescriptor() should take PoolType into account...

svn path=/trunk/; revision=13176
This commit is contained in:
Thomas Bluemel 2005-01-21 02:19:13 +00:00
parent f693575e35
commit be2cf1c579

View file

@ -300,7 +300,7 @@ SeCaptureSecurityDescriptor(
ROUND_UP(SaclSize, sizeof(ULONG)) +
ROUND_UP(DaclSize, sizeof(ULONG));
NewDescriptor = ExAllocatePool(PagedPool,
NewDescriptor = ExAllocatePool(PoolType,
DescriptorSize);
if(NewDescriptor != NULL)
{