ntdll: Fix NtQueryInformationThread on non x86.
This commit is contained in:
parent
d98b73a17a
commit
6d0e51fb66
|
@ -1128,10 +1128,10 @@ NTSTATUS WINAPI NtQueryInformationThread( HANDLE handle, THREADINFOCLASS class,
|
|||
}
|
||||
SERVER_END_REQ;
|
||||
}
|
||||
if (status == STATUS_SUCCESS && ret_len) *ret_len = sizeof(*tdi);
|
||||
#else
|
||||
status = STATUS_NOT_IMPLEMENTED;
|
||||
#endif
|
||||
if (status == STATUS_SUCCESS && ret_len) *ret_len = sizeof(*tdi);
|
||||
return status;
|
||||
}
|
||||
case ThreadPriority:
|
||||
|
|
Loading…
Reference in New Issue