Commit 6d9cf491 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

ntdll: Ignore higher bits in selector for ThreadDescriptorTableEntry info query.

Fixes a random test failure in kernel32/thread tests caused by the uninitialized HIWORD. Signed-off-by: 's avatarSebastian Lackner <sebastian@fds-team.de>
parent 100c043e
...@@ -1014,7 +1014,7 @@ NTSTATUS WINAPI NtQueryInformationThread( HANDLE handle, THREADINFOCLASS class, ...@@ -1014,7 +1014,7 @@ NTSTATUS WINAPI NtQueryInformationThread( HANDLE handle, THREADINFOCLASS class,
status = STATUS_INFO_LENGTH_MISMATCH; status = STATUS_INFO_LENGTH_MISMATCH;
else if (!(tdi->Selector & 4)) /* GDT selector */ else if (!(tdi->Selector & 4)) /* GDT selector */
{ {
unsigned sel = tdi->Selector & ~3; /* ignore RPL */ unsigned sel = LOWORD(tdi->Selector) & ~3; /* ignore RPL */
status = STATUS_SUCCESS; status = STATUS_SUCCESS;
if (!sel) /* null selector */ if (!sel) /* null selector */
memset( &tdi->Entry, 0, sizeof(tdi->Entry) ); memset( &tdi->Entry, 0, sizeof(tdi->Entry) );
...@@ -1045,7 +1045,7 @@ NTSTATUS WINAPI NtQueryInformationThread( HANDLE handle, THREADINFOCLASS class, ...@@ -1045,7 +1045,7 @@ NTSTATUS WINAPI NtQueryInformationThread( HANDLE handle, THREADINFOCLASS class,
SERVER_START_REQ( get_selector_entry ) SERVER_START_REQ( get_selector_entry )
{ {
req->handle = wine_server_obj_handle( handle ); req->handle = wine_server_obj_handle( handle );
req->entry = tdi->Selector >> 3; req->entry = LOWORD(tdi->Selector) >> 3;
status = wine_server_call( req ); status = wine_server_call( req );
if (!status) if (!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