From c5fdbeab85dfe69ebaec92969ec2ce77b105f1df Mon Sep 17 00:00:00 2001 From: Daniel T Chen Date: Mon, 4 Jan 2010 21:44:37 -0500 Subject: threaded-mainloop: Properly initialise m->n_waiting_for_accept to prevent deadlock MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Compiler optimisations have been seen to initialise m->n_waiting_for_accept to a positive non-zero value, so the while() in pa_threaded_mainloop_signal() never proceeds. Fix this by properly initializing m->n_waiting_for_accept in pa_threaded_mainloop_new(). Patch from Iain Bucław. https://bugs.launchpad.net/bugs/502992 --- src/pulse/thread-mainloop.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/pulse/thread-mainloop.c') diff --git a/src/pulse/thread-mainloop.c b/src/pulse/thread-mainloop.c index 14ed9264..16934044 100644 --- a/src/pulse/thread-mainloop.c +++ b/src/pulse/thread-mainloop.c @@ -116,6 +116,7 @@ pa_threaded_mainloop *pa_threaded_mainloop_new(void) { pa_mainloop_set_poll_func(m->real_mainloop, poll_func, m->mutex); m->n_waiting = 0; + m->n_waiting_for_accept = 0; return m; } -- cgit