[fastfat_new]

- Properly complete non-implemented volume open requests.

svn path=/trunk/; revision=43319
This commit is contained in:
Aleksey Bragin 2009-10-07 09:27:03 +00:00
parent 9da043a395
commit abc450dbf0

View file

@ -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;
}
}