mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
[NTFS]
Ach! Wir können noch nicht mit dem ID öffnen! So far, bail out when we are requested to open a file with its MFT index instead of its name. nfi triggers this a lot. Likely to be implemented ;-) CORE-8725 svn path=/trunk/; revision=65613
This commit is contained in:
@@ -186,6 +186,12 @@ NtfsCreateFile(PDEVICE_OBJECT DeviceObject,
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
if (RequestedOptions & FILE_OPEN_BY_FILE_ID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
FileObject = Stack->FileObject;
|
||||
|
||||
if (RequestedDisposition == FILE_CREATE ||
|
||||
|
||||
Reference in New Issue
Block a user