mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[fastfat_new]
- Properly complete non-implemented volume open requests. svn path=/trunk/; revision=43319
This commit is contained in:
parent
9da043a395
commit
abc450dbf0
1 changed files with 8 additions and 0 deletions
|
@ -300,6 +300,14 @@ FatiCreate(IN PFAT_IRP_CONTEXT IrpContext,
|
|||
/* It is indeed a volume open request */
|
||||
DPRINT1("Volume open request, not implemented now!\n");
|
||||
UNIMPLEMENTED;
|
||||
|
||||
/* Unlock VCB */
|
||||
FatReleaseVcb(IrpContext, Vcb);
|
||||
|
||||
/* Complete the request */
|
||||
FatCompleteRequest(IrpContext, Irp, STATUS_NOT_IMPLEMENTED);
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue