mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 19:19:00 +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,
|
DriveLayout = ExAllocatePoolWithTag(NonPagedPool,
|
||||||
FIELD_OFFSET(DRIVE_LAYOUT_INFORMATION, PartitionEntry) +
|
FIELD_OFFSET(DRIVE_LAYOUT_INFORMATION, PartitionEntry) +
|
||||||
LayoutEx->PartitionCount * sizeof(PARTITION_INFORMATION),
|
LayoutEx->PartitionCount * sizeof(PARTITION_INFORMATION),
|
||||||
'BtsF');
|
TAG_FSTUB);
|
||||||
if (!DriveLayout)
|
if (!DriveLayout)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -1605,7 +1605,7 @@ FstubWritePartitionTableMBR(IN PDISK_INFORMATION Disk,
|
||||||
DriveLayout);
|
DriveLayout);
|
||||||
|
|
||||||
/* Free allocated structure and return */
|
/* Free allocated structure and return */
|
||||||
ExFreePoolWithTag(DriveLayout, 'BtsF');
|
ExFreePoolWithTag(DriveLayout, TAG_FSTUB);
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue