mirror of
https://github.com/reactos/wine.git
synced 2025-01-23 12:25:17 +00:00
ntdll: Setting FileAllInformation is not allowed.
This commit is contained in:
parent
a8dc415a21
commit
a17c7f0bd0
@ -2148,6 +2148,10 @@ NTSTATUS WINAPI NtSetInformationFile(HANDLE handle, PIO_STATUS_BLOCK io,
|
||||
io->u.Status = STATUS_INVALID_PARAMETER_3;
|
||||
break;
|
||||
|
||||
case FileAllInformation:
|
||||
io->u.Status = STATUS_INVALID_INFO_CLASS;
|
||||
break;
|
||||
|
||||
default:
|
||||
FIXME("Unsupported class (%d)\n", class);
|
||||
io->u.Status = STATUS_NOT_IMPLEMENTED;
|
||||
|
Loading…
x
Reference in New Issue
Block a user