mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
- timer_queue_thread_proc: Add missing and required RtlExitUserThread before function exit. Fixes crashing of kernel32_winetest for sync.
svn path=/trunk/; revision=40932
This commit is contained in:
parent
325b2659dc
commit
6c1741b0aa
1 changed files with 1 additions and 0 deletions
|
@ -239,6 +239,7 @@ static void WINAPI timer_queue_thread_proc(LPVOID p)
|
|||
NtClose(q->event);
|
||||
RtlDeleteCriticalSection(&q->cs);
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, q);
|
||||
RtlExitUserThread(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
static void queue_destroy_timer(struct queue_timer *t)
|
||||
|
|
Loading…
Reference in a new issue