diff --git a/reactos/ntoskrnl/io/iomgr/irp.c b/reactos/ntoskrnl/io/iomgr/irp.c index ee6e3aa7fdd..609636e3676 100644 --- a/reactos/ntoskrnl/io/iomgr/irp.c +++ b/reactos/ntoskrnl/io/iomgr/irp.c @@ -591,9 +591,7 @@ IoAllocateIrp(IN CCHAR StackSize, /* Check if we should charge quota */ if (ChargeQuota) { - /* Irp = ExAllocatePoolWithQuotaTag(NonPagedPool, Size, TAG_IRP); */ - /* FIXME */ - Irp = ExAllocatePoolWithTag(NonPagedPool, Size, TAG_IRP); + Irp = ExAllocatePoolWithQuotaTag(NonPagedPool, Size, TAG_IRP); } else { diff --git a/reactos/ntoskrnl/mm/ARM3/expool.c b/reactos/ntoskrnl/mm/ARM3/expool.c index 11924277659..259cfa23dcf 100644 --- a/reactos/ntoskrnl/mm/ARM3/expool.c +++ b/reactos/ntoskrnl/mm/ARM3/expool.c @@ -2518,7 +2518,7 @@ ExAllocatePoolWithQuotaTag(IN POOL_TYPE PoolType, PEPROCESS Process = PsGetCurrentProcess(); // - // Check if we should fail intead of raising an exception + // Check if we should fail instead of raising an exception // if (PoolType & POOL_QUOTA_FAIL_INSTEAD_OF_RAISE) {