Author: hbelusca
Date: Sun Sep 15 23:17:24 2013
New Revision: 60157
URL:
http://svn.reactos.org/svn/reactos?rev=60157&view=rev
Log:
[NTOS]
- Enable a call to ExAllocatePoolWithQuotaTag now that the function is implemented.
- Fix a typo.
Modified:
trunk/reactos/ntoskrnl/io/iomgr/irp.c
trunk/reactos/ntoskrnl/mm/ARM3/expool.c
Modified: trunk/reactos/ntoskrnl/io/iomgr/irp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/irp.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/irp.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/irp.c [iso-8859-1] Sun Sep 15 23:17:24 2013
@@ -591,9 +591,7 @@
/* 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
{
Modified: trunk/reactos/ntoskrnl/mm/ARM3/expool.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/expool.c?…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/expool.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/expool.c [iso-8859-1] Sun Sep 15 23:17:24 2013
@@ -2518,7 +2518,7 @@
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)
{