From bf058f978a51333e3881ad8c046ccc00bff8ef6c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 7 Jan 2009 23:55:13 +0100 Subject: output: join the output thread after sending the KILL command Be sure that the output thread has quite before we start destructing the output object. --- src/output_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/output_thread.c') diff --git a/src/output_thread.c b/src/output_thread.c index 1467d26a8..3d5fe57d6 100644 --- a/src/output_thread.c +++ b/src/output_thread.c @@ -175,6 +175,6 @@ void audio_output_thread_start(struct audio_output *ao) assert(ao->command == AO_COMMAND_NONE); - if (!(ao->thread = g_thread_create(audio_output_task, ao, FALSE, &e))) + if (!(ao->thread = g_thread_create(audio_output_task, ao, true, &e))) g_error("Failed to spawn output task: %s\n", e->message); } -- cgit v1.2.3