[pulseaudio-commits] src/pulse

Arun Raghavan arun at kemper.freedesktop.org
Fri Oct 17 01:56:04 PDT 2014


 src/pulse/thread-mainloop.c |    7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit 2e754b1e78006a3e95ebd506f49354876dd364b1
Author: Arun Raghavan <arun at accosted.net>
Date:   Thu Oct 16 17:09:22 2014 +0200

    pulse: Initalise pa_threaded_mainloop with zeroes

diff --git a/src/pulse/thread-mainloop.c b/src/pulse/thread-mainloop.c
index 435e9f6..631b6ae 100644
--- a/src/pulse/thread-mainloop.c
+++ b/src/pulse/thread-mainloop.c
@@ -97,7 +97,7 @@ pa_threaded_mainloop *pa_threaded_mainloop_new(void) {
 
     pa_init_i18n();
 
-    m = pa_xnew(pa_threaded_mainloop, 1);
+    m = pa_xnew0(pa_threaded_mainloop, 1);
 
     if (!(m->real_mainloop = pa_mainloop_new())) {
         pa_xfree(m);
@@ -107,14 +107,9 @@ pa_threaded_mainloop *pa_threaded_mainloop_new(void) {
     m->mutex = pa_mutex_new(true, true);
     m->cond = pa_cond_new();
     m->accept_cond = pa_cond_new();
-    m->thread = NULL;
-    m->name = NULL;
 
     pa_mainloop_set_poll_func(m->real_mainloop, poll_func, m->mutex);
 
-    m->n_waiting = 0;
-    m->n_waiting_for_accept = 0;
-
     return m;
 }
 



More information about the pulseaudio-commits mailing list