Commit a17c7f0b authored by Max TenEyck Woodbury's avatar Max TenEyck Woodbury Committed by Alexandre Julliard

ntdll: Setting FileAllInformation is not allowed.

parent a8dc415a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment