summaryrefslogtreecommitdiffhomepage
path: root/src/thread/ntapi_tt_create_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/ntapi_tt_create_thread.c')
-rw-r--r--src/thread/ntapi_tt_create_thread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/thread/ntapi_tt_create_thread.c b/src/thread/ntapi_tt_create_thread.c
index c0ab11a..2d46996 100644
--- a/src/thread/ntapi_tt_create_thread.c
+++ b/src/thread/ntapi_tt_create_thread.c
@@ -355,7 +355,8 @@ int32_t __stdcall __ntapi_tt_create_thread(nt_thread_params * params)
__ntapi->zw_close(params->hthread);
/* and finally */
- params->thread_id = (uint32_t)cid.thread_id;
+ params->cid.process_id = cid.process_id;
+ params->cid.thread_id = cid.thread_id;
return NT_STATUS_SUCCESS;
}