mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
[CDFS]
Don't attempt anything during the cleanup of stream file (or of an unopened file). Fix crash on boot. svn path=/trunk/; revision=62791
This commit is contained in:
parent
bc61ac0dc5
commit
4c86c611f1
1 changed files with 6 additions and 0 deletions
|
@ -46,6 +46,12 @@ CdfsCleanupFile(PDEVICE_EXTENSION DeviceExt,
|
||||||
DeviceExt,
|
DeviceExt,
|
||||||
FileObject);
|
FileObject);
|
||||||
|
|
||||||
|
PFCB Fcb = FileObject->FsContext;
|
||||||
|
if (!Fcb)
|
||||||
|
{
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
/* Notify about the cleanup */
|
/* Notify about the cleanup */
|
||||||
FsRtlNotifyCleanup(DeviceExt->NotifySync,
|
FsRtlNotifyCleanup(DeviceExt->NotifySync,
|
||||||
&(DeviceExt->NotifyList),
|
&(DeviceExt->NotifyList),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue