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

This commit is contained in:
poljar (Damir Jelić) 2013-12-24 22:35:41 +01:00 committed by Tanu Kaskinen
parent f7afaa2644
commit c307093cf0

View file

@ -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);
}