From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> First remove object from the list and then remove it. --- profiles/proximity/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/proximity/monitor.c b/profiles/proximity/monitor.c index f2e0739..b05cdd7 100644 --- a/profiles/proximity/monitor.c +++ b/profiles/proximity/monitor.c @@ -606,13 +606,13 @@ static void monitor_destroy(gpointer user_data) { struct monitor *monitor = user_data; + monitors = g_slist_remove(monitors, monitor); + btd_device_unref(monitor->device); g_free(monitor->linklosslevel); g_free(monitor->immediatelevel); g_free(monitor->signallevel); g_free(monitor); - - monitors = g_slist_remove(monitors, monitor); } static struct monitor *register_monitor(struct btd_device *device) -- 1.9.1 -- 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