mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
SeCaptureSecurityDescriptor() should take PoolType into account...
svn path=/trunk/; revision=13176
This commit is contained in:
parent
f693575e35
commit
be2cf1c579
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ SeCaptureSecurityDescriptor(
|
||||||
ROUND_UP(SaclSize, sizeof(ULONG)) +
|
ROUND_UP(SaclSize, sizeof(ULONG)) +
|
||||||
ROUND_UP(DaclSize, sizeof(ULONG));
|
ROUND_UP(DaclSize, sizeof(ULONG));
|
||||||
|
|
||||||
NewDescriptor = ExAllocatePool(PagedPool,
|
NewDescriptor = ExAllocatePool(PoolType,
|
||||||
DescriptorSize);
|
DescriptorSize);
|
||||||
if(NewDescriptor != NULL)
|
if(NewDescriptor != NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue