25 Jan
2026
25 Jan
'26
3:27 p.m.
From: Anton Baskanov <baskanov@gmail.com> Otherwise synth_sink_activate will wait forever. --- dlls/dmsynth/synthsink.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/dmsynth/synthsink.c b/dlls/dmsynth/synthsink.c index 5388e481845..2592894531e 100644 --- a/dlls/dmsynth/synthsink.c +++ b/dlls/dmsynth/synthsink.c @@ -277,6 +277,7 @@ static DWORD CALLBACK synth_sink_render_thread(void *args) if (!(samples = malloc(samples_size))) { ERR("Failed to allocate memory for samples\n"); + SetEvent(params->started_event); goto done; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9651