summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pulse/thread-mainloop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pulse/thread-mainloop.c b/src/pulse/thread-mainloop.c
index 060782b5..7e1ccfaa 100644
--- a/src/pulse/thread-mainloop.c
+++ b/src/pulse/thread-mainloop.c
@@ -120,7 +120,8 @@ void pa_threaded_mainloop_free(pa_threaded_mainloop* m) {
pa_threaded_mainloop_stop(m);
- pa_thread_free(m->thread);
+ if (m->thread)
+ pa_thread_free(m->thread);
pa_mainloop_free(m->real_mainloop);