mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[FASTFAT]
vfatMakeFCBFromDirEntry(), use appropriate tag on free. Dedicated to Thomas :-) svn path=/trunk/; revision=73683
This commit is contained in:
@@ -732,7 +732,7 @@ vfatMakeFCBFromDirEntry(
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
vfatReleaseFCB(vcb, rcFCB);
|
||||
ExFreePool(NameU.Buffer);
|
||||
ExFreePoolWithTag(NameU.Buffer, TAG_FCB);
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
@@ -741,7 +741,7 @@ vfatMakeFCBFromDirEntry(
|
||||
vfatAddFCBToTable(vcb, rcFCB);
|
||||
*fileFCB = rcFCB;
|
||||
|
||||
ExFreePool(NameU.Buffer);
|
||||
ExFreePoolWithTag(NameU.Buffer, TAG_FCB);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user