[NTOSKRNL]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sat, 6 Oct 2012 18:49:23 +0000 (18:49 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sat, 6 Oct 2012 18:49:23 +0000 (18:49 +0000)
Use TAG_FSTUB instead of 'BtsF'

svn path=/trunk/; revision=57500

reactos/ntoskrnl/fstub/fstubex.c

index e6f97e2..26c6106 100644 (file)
@@ -269,7 +269,7 @@ FstubConvertExtendedToLayout(IN PDRIVE_LAYOUT_INFORMATION_EX LayoutEx)
     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 @@ FstubWritePartitionTableMBR(IN PDISK_INFORMATION Disk,
                                    DriveLayout);
 
     /* Free allocated structure and return */
-    ExFreePoolWithTag(DriveLayout, 'BtsF');
+    ExFreePoolWithTag(DriveLayout, TAG_FSTUB);
     return Status;
 }