Commit 44dbb074 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Return a proper Information field also when opening a server file object.

parent 432de8a9
......@@ -179,6 +179,7 @@ NTSTATUS WINAPI NtCreateFile( PHANDLE handle, ACCESS_MASK access, POBJECT_ATTRIB
*handle = reply->handle;
}
SERVER_END_REQ;
if (io->u.Status == STATUS_SUCCESS) io->Information = FILE_OPENED;
return io->u.Status;
}
......
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