Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/3] gdbus: Don't try to remove removed sources
@ 2013-11-09 17:02 Bastien Nocera
  2013-11-09 17:04 ` Bastien Nocera
  2013-11-11  8:39 ` Johan Hedberg
  0 siblings, 2 replies; 5+ messages in thread
From: Bastien Nocera @ 2013-11-09 17:02 UTC (permalink / raw)
  To: linux-bluetooth


When we return FALSE from idle handlers, the source is removed.
This will be causing warnings in glib 2.40.

See https://bugzilla.gnome.org/show_bug.cgi?id=710724
---
 gdbus/object.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gdbus/object.c b/gdbus/object.c
index 268fed5..b248cbb 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -1006,6 +1006,8 @@ static gboolean process_changes(gpointer user_data)
 	if (data->removed != NULL)
 		emit_interfaces_removed(data);
 
+	data->process_id = 0;
+
 	return FALSE;
 }
 
@@ -1019,6 +1021,7 @@ static void generic_unregister(DBusConnection *connection, void *user_data)
 
 	if (data->process_id > 0) {
 		g_source_remove(data->process_id);
+		data->process_id = 0;
 		process_changes(data);
 	}
 
-- 
1.8.4.2



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-11-11 12:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-09 17:02 [PATCH 1/3] gdbus: Don't try to remove removed sources Bastien Nocera
2013-11-09 17:04 ` Bastien Nocera
2013-11-11  9:32   ` Luiz Augusto von Dentz
2013-11-11 12:13     ` Bastien Nocera
2013-11-11  8:39 ` Johan Hedberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox