Module: wine Branch: master Commit: 5811cac5c2825804f78336cf24ac46c4b28d439d URL: https://source.winehq.org/git/wine.git/?a=commit;h=5811cac5c2825804f78336cf2...
Author: Zebediah Figura z.figura12@gmail.com Date: Sat Apr 6 14:25:51 2019 -0500
quartz/systemclock: Avoid a use-after-free (Coverity).
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/quartz/systemclock.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/quartz/systemclock.c b/dlls/quartz/systemclock.c index 15f8ea0..6bb1f47 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; } }