mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[FASTFAT] Avoid a use after free in VfatCloseFile.
This commit is contained in:
parent
bc8307205b
commit
bc002f1708
1 changed files with 4 additions and 1 deletions
|
@ -163,6 +163,7 @@ VfatCloseFile(
|
|||
{
|
||||
PVFATFCB pFcb;
|
||||
PVFATCCB pCcb;
|
||||
BOOLEAN IsVolume;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
|
||||
DPRINT("VfatCloseFile(DeviceExt %p, FileObject %p)\n",
|
||||
|
@ -177,6 +178,8 @@ VfatCloseFile(
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
IsVolume = BooleanFlagOn(pFcb->Flags, FCB_IS_VOLUME);
|
||||
|
||||
if (pCcb)
|
||||
{
|
||||
vfatDestroyCCB(pCcb);
|
||||
|
@ -194,7 +197,7 @@ VfatCloseFile(
|
|||
FileObject->SectionObjectPointer = NULL;
|
||||
|
||||
#ifdef ENABLE_SWAPOUT
|
||||
if (BooleanFlagOn(pFcb->Flags, FCB_IS_VOLUME) && DeviceExt->OpenHandleCount == 0)
|
||||
if (IsVolume && DeviceExt->OpenHandleCount == 0)
|
||||
{
|
||||
VfatCheckForDismount(DeviceExt, FALSE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue