From c069eb2e0b3aef8abef3d066f9eaed61d4bf66b9 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 11 Nov 2015 15:40:56 +0200 Subject: [PATCH] core/gatt-client: Fix warning when removing services This fixes the following warnings caused by not resetting id to 0: GLib-CRITICAL **: Source ID 145 was not found when attempting to remove it GLib-CRITICAL **: Source ID 151 was not found when attempting to remove it GLib-CRITICAL **: Source ID 155 was not found when attempting to remove it GLib-CRITICAL **: Source ID 162 was not found when attempting to remove it --- src/gatt-client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gatt-client.c b/src/gatt-client.c index 20a5ae680..39f664652 100644 --- a/src/gatt-client.c +++ b/src/gatt-client.c @@ -1654,6 +1654,7 @@ static gboolean set_chrcs_ready(gpointer user_data) { struct service *service = user_data; + service->idle_id = 0; notify_chrcs(service); return FALSE; -- 2.11.0