diff --git a/ntoskrnl/ob/obhandle.c b/ntoskrnl/ob/obhandle.c index bf9f1f09cb5..28a2fc77e36 100644 --- a/ntoskrnl/ob/obhandle.c +++ b/ntoskrnl/ob/obhandle.c @@ -447,7 +447,8 @@ ObpChargeQuotaForObject(IN POBJECT_HEADER ObjectHeader, if (ObjectQuota) { /* We have a quota, get the charges */ - PagedPoolCharge = ObjectQuota->PagedPoolCharge; + PagedPoolCharge = ObjectQuota->PagedPoolCharge + + ObjectQuota->SecurityDescriptorCharge; NonPagedPoolCharge = ObjectQuota->NonPagedPoolCharge; } else