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

This commit is contained in:
Alexandre Julliard 2008-01-07 12:17:42 +01:00
parent 432de8a9b2
commit 44dbb07441

View File

@ -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;
}