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

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

View file

@ -424,6 +424,7 @@ static void device_free(pa_bluetooth_device *d) {
pa_xfree(d->path); pa_xfree(d->path);
pa_xfree(d->alias); pa_xfree(d->alias);
pa_xfree(d->address); pa_xfree(d->address);
pa_xfree(d->adapter_path);
pa_xfree(d); pa_xfree(d);
} }