mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
[NTOSKRNL]
Use TAG_FSTUB instead of 'BtsF' svn path=/trunk/; revision=57500
This commit is contained in:
parent
ebd10c73a3
commit
5ff7896120
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue