Diff between 6a8cb20ef51d7de70e3ee0f49f4925d3faee609a and 482fcc359d5f24aa6c1048bc36609f276b09bf8b

Changed Files

File Additions Deletions Status
gdbus/client.c +4 -0 modified

Full Patch

diff --git a/gdbus/client.c b/gdbus/client.c
index 03276f0..c03e3a4 100644
--- a/gdbus/client.c
+++ b/gdbus/client.c
@@ -1032,6 +1032,8 @@ static void get_name_owner_reply(DBusPendingCall *call, void *user_data)
 	DBusError error;
 	const char *name;
 
+	g_dbus_client_ref(client);
+
 	dbus_error_init(&error);
 
 	if (dbus_set_error_from_message(&error, reply) == TRUE) {
@@ -1058,6 +1060,8 @@ done:
 
 	dbus_pending_call_unref(client->pending_call);
 	client->pending_call = NULL;
+
+	g_dbus_client_unref(client);
 }
 
 static void get_name_owner(GDBusClient *client, const char *name)