If all ATT connection callbacks are unregistered, GAttrib reference can be dropped. --- src/device.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/device.c b/src/device.c index 2185b77..3d092e2 100644 --- a/src/device.c +++ b/src/device.c @@ -2605,10 +2605,15 @@ gboolean btd_device_remove_attio_callback(struct btd_device *device, guint id) g_free(attio); + if (device->attios != NULL) + return TRUE; + if (device->attioid) { g_source_remove(device->attioid); device->attioid = 0; } + g_attrib_unref(device->attrib); + return TRUE; } -- 1.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html