mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTOSKRNL]
Use TAG_FSTUB instead of 'BtsF' svn path=/trunk/; revision=57500
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user