[FASTFAT]

Opening file by ID is not possible with FAT.

svn path=/trunk/; revision=72156
This commit is contained in:
Pierre Schweitzer
2016-08-08 07:28:14 +00:00
parent f2e1baa17e
commit 2a1acea36f

View File

@@ -502,6 +502,11 @@ VfatCreateFile(
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)