Author: pschweitzer
Date: Mon Aug 8 07:28:14 2016
New Revision: 72156
URL:
http://svn.reactos.org/svn/reactos?rev=72156&view=rev
Log:
[FASTFAT]
Opening file by ID is not possible with FAT.
Modified:
trunk/reactos/drivers/filesystems/fastfat/create.c
Modified: trunk/reactos/drivers/filesystems/fastfat/create.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/create.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/create.c [iso-8859-1] Mon Aug 8 07:28:14
2016
@@ -502,6 +502,11 @@
FileObject = Stack->FileObject;
DeviceExt = DeviceObject->DeviceExtension;
+ if (Stack->Parameters.Create.Options & FILE_OPEN_BY_FILE_ID)
+ {
+ return STATUS_NOT_IMPLEMENTED;
+ }
+
/* Check their validity. */
if (RequestedOptions & FILE_DIRECTORY_FILE &&
RequestedDisposition == FILE_SUPERSEDE)