[PATCH 1/5] quartz/systemclock: Create the advise thread after the events it depends on.

Zebediah Figura z.figura12 at gmail.com
Thu Jun 20 20:13:16 CDT 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/quartz/systemclock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/quartz/systemclock.c b/dlls/quartz/systemclock.c
index 6bb1f47e6f7..2b75c8da89e 100644
--- a/dlls/quartz/systemclock.c
+++ b/dlls/quartz/systemclock.c
@@ -103,9 +103,9 @@ static void notify_thread(struct system_clock *clock)
 {
     if (!InterlockedCompareExchange(&clock->thread_created, TRUE, FALSE))
     {
-        clock->thread = CreateThread(NULL, 0, SystemClockAdviseThread, clock, 0, NULL);
         clock->notify_event = CreateEventW(NULL, FALSE, FALSE, NULL);
         clock->stop_event = CreateEventW(NULL, TRUE, FALSE, NULL);
+        clock->thread = CreateThread(NULL, 0, SystemClockAdviseThread, clock, 0, NULL);
     }
     SetEvent(clock->notify_event);
 }
-- 
2.21.0




More information about the wine-devel mailing list