From 4b92749473f74dba456df78a8734cf8bf8213860 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 5 Jan 2016 14:44:23 -0300 Subject: [PATCH] gdbus/client: Always call ready callback Call ready callback regardless of the reply to GetManagedObjects since otherwise the user code will be left waiting forever when in fact no proxy will be created. --- gdbus/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdbus/client.c b/gdbus/client.c index 48711ae81..068e778ce 100644 --- a/gdbus/client.c +++ b/gdbus/client.c @@ -1073,9 +1073,6 @@ static void parse_managed_objects(GDBusClient *client, DBusMessage *msg) dbus_message_iter_next(&dict); } - - if (client->ready) - client->ready(client, client->ready_data); } static void get_managed_objects_reply(DBusPendingCall *call, void *user_data) @@ -1096,6 +1093,9 @@ static void get_managed_objects_reply(DBusPendingCall *call, void *user_data) parse_managed_objects(client, reply); done: + if (client->ready) + client->ready(client, client->ready_data); + dbus_message_unref(reply); dbus_pending_call_unref(client->get_objects_call); -- 2.47.3