[pulseaudio-commits] src/modules
David Henningsson
diwic at kemper.freedesktop.org
Fri Dec 11 01:08:10 PST 2015
src/modules/alsa/alsa-mixer.c | 1 +
1 file changed, 1 insertion(+)
New commits:
commit f61a16b8b17b3f50234768713d0245e42e5c5aff
Author: Juho Hämäläinen <juho.hamalainen at nomovok.com>
Date: Thu Dec 10 15:09:34 2015 +0200
alsa-mixer: Have valid proplist for synthesized path as well.
When synthesized alsa path is freed there is an assert from NULL
proplist. Create empty proplist for the path to fix.
Signed-off-by: Juho Hämäläinen <juho.hamalainen at nomovok.com>
diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c
index 3f51717..515b285 100644
--- a/src/modules/alsa/alsa-mixer.c
+++ b/src/modules/alsa/alsa-mixer.c
@@ -2621,6 +2621,7 @@ pa_alsa_path *pa_alsa_path_synthesize(const char *element, pa_alsa_direction_t d
p = pa_xnew0(pa_alsa_path, 1);
p->name = pa_xstrdup(element);
p->direction = direction;
+ p->proplist = pa_proplist_new();
e = pa_xnew0(pa_alsa_element, 1);
e->path = p;
More information about the pulseaudio-commits
mailing list