From 5811cac5c2825804f78336cf24ac46c4b28d439d Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Sat, 6 Apr 2019 14:25:51 -0500 Subject: [PATCH] quartz/systemclock: Avoid a use-after-free (Coverity). Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- dlls/quartz/systemclock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/quartz/systemclock.c b/dlls/quartz/systemclock.c index 15f8ea0c021..6bb1f47e6f7 100644 --- a/dlls/quartz/systemclock.c +++ b/dlls/quartz/systemclock.c @@ -85,6 +85,7 @@ static DWORD WINAPI SystemClockAdviseThread(void *param) SetEvent(sink->handle); list_remove(&sink->entry); heap_free(sink); + continue; } }