summaryrefslogtreecommitdiff
path: root/libgdm
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2018-06-01 17:16:35 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2018-06-02 20:19:53 +0200
commitd3b1cc17bb93de7025b2204c09545363f6f15264 (patch)
treef8241c137374f9dc31aba622b4435cb59872ac0d /libgdm
parent4d2da18f7d3fa79aeededcd1760d3a1ab75adfeb (diff)
downloadgdm-d3b1cc17bb93de7025b2204c09545363f6f15264.tar.gz
libgdm: Don't double-ref the connection got from task
Both if we re-use the shared connection in `gdm_client_get_connection` and if we create a new one in `on_connected`, we steal the pointer here by using `g_task_propagate_pointer` and thus we don't have to add an additional reference to this connection when returning, or it won't ever be consumed by function customers.
Diffstat (limited to 'libgdm')
-rw-r--r--libgdm/gdm-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgdm/gdm-client.c b/libgdm/gdm-client.c
index fa4ba842..36292148 100644
--- a/libgdm/gdm-client.c
+++ b/libgdm/gdm-client.c
@@ -536,7 +536,7 @@ gdm_client_get_connection_finish (GdmClient *client,
GAsyncResult *result,
GError **error)
{
- GDBusConnection *connection = NULL;
+ GDBusConnection *connection;
g_return_val_if_fail (GDM_IS_CLIENT (client), FALSE);
@@ -551,7 +551,7 @@ gdm_client_get_connection_finish (GdmClient *client,
(gpointer *) &client->priv->connection);
}
- return g_object_ref (connection);
+ return connection;
}
static void