Author: hbelusca
Date: Sat Oct 6 18:49:23 2012
New Revision: 57500
URL:
http://svn.reactos.org/svn/reactos?rev=57500&view=rev
Log:
[NTOSKRNL]
Use TAG_FSTUB instead of 'BtsF'
Modified:
trunk/reactos/ntoskrnl/fstub/fstubex.c
Modified: trunk/reactos/ntoskrnl/fstub/fstubex.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fstub/fstubex.c?r…
==============================================================================
--- trunk/reactos/ntoskrnl/fstub/fstubex.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/fstub/fstubex.c [iso-8859-1] Sat Oct 6 18:49:23 2012
@@ -269,7 +269,7 @@
DriveLayout = ExAllocatePoolWithTag(NonPagedPool,
FIELD_OFFSET(DRIVE_LAYOUT_INFORMATION,
PartitionEntry) +
LayoutEx->PartitionCount *
sizeof(PARTITION_INFORMATION),
- 'BtsF');
+ TAG_FSTUB);
if (!DriveLayout)
{
return NULL;
@@ -1605,7 +1605,7 @@
DriveLayout);
/* Free allocated structure and return */
- ExFreePoolWithTag(DriveLayout, 'BtsF');
+ ExFreePoolWithTag(DriveLayout, TAG_FSTUB);
return Status;
}