Author: fireball
Date: Wed Oct 7 11:27:03 2009
New Revision: 43319
URL:
http://svn.reactos.org/svn/reactos?rev=43319&view=rev
Log:
[fastfat_new]
- Properly complete non-implemented volume open requests.
Modified:
trunk/reactos/drivers/filesystems/fastfat_new/create.c
Modified: trunk/reactos/drivers/filesystems/fastfat_new/create.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat_new/create.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat_new/create.c [iso-8859-1] Wed Oct 7
11:27:03 2009
@@ -300,6 +300,14 @@
/* 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;
}
}