From: poljar (Damir Jelić) Date: Tue, 24 Dec 2013 21:35:40 +0000 (+0100) Subject: bluez5-util: Free the adapter_path in device_free(). X-Git-Tag: v4.99.1~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7afaa264497e98a6f93c483ec10f22d40e17417;p=platform%2Fupstream%2Fpulseaudio.git 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); }