[pulseaudio-commits] 2 commits - src/modules

Tanu Kaskinen tanuk at kemper.freedesktop.org
Fri Jan 3 03:18:57 PST 2014


 src/modules/alsa/alsa-mixer.c       |    1 +
 src/modules/bluetooth/bluez5-util.c |    1 +
 2 files changed, 2 insertions(+)

New commits:
commit c307093cf07d66df9e0805df0d106e6538f67c14
Author: poljar (Damir Jelić) <poljarinho at gmail.com>
Date:   Tue Dec 24 22:35:41 2013 +0100

    alsa-mixer: Free the description key in alsa_path_free().

diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c
index 2b90a6e..99de0ec 100644
--- a/src/modules/alsa/alsa-mixer.c
+++ b/src/modules/alsa/alsa-mixer.c
@@ -523,6 +523,7 @@ void pa_alsa_path_free(pa_alsa_path *p) {
     pa_proplist_free(p->proplist);
     pa_xfree(p->name);
     pa_xfree(p->description);
+    pa_xfree(p->description_key);
     pa_xfree(p);
 }
 

commit f7afaa264497e98a6f93c483ec10f22d40e17417
Author: poljar (Damir Jelić) <poljarinho at gmail.com>
Date:   Tue Dec 24 22:35:40 2013 +0100

    bluez5-util: Free the adapter_path in device_free().

diff --git a/src/modules/bluetooth/bluez5-util.c b/src/modules/bluetooth/bluez5-util.c
index c7fb6ae..7eecc18 100644
--- a/src/modules/bluetooth/bluez5-util.c
+++ b/src/modules/bluetooth/bluez5-util.c
@@ -424,6 +424,7 @@ static void device_free(pa_bluetooth_device *d) {
     pa_xfree(d->path);
     pa_xfree(d->alias);
     pa_xfree(d->address);
+    pa_xfree(d->adapter_path);
     pa_xfree(d);
 }
 



More information about the pulseaudio-commits mailing list