summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Trevisan (TreviƱo) <mail@3v1n0.net>2018-06-01 17:07:41 +0200
committerRay Strode <rstrode@redhat.com>2021-04-12 16:57:53 -0400
commit90f95bc658be6c5ae08f4b7431763ab6bccfe0cc (patch)
tree33560af6e99f60aca88bfa0d69148e91f68f9423
parent5eed3317a27b0db729164521f41a9c4b0623e524 (diff)
downloadgdm-90f95bc658be6c5ae08f4b7431763ab6bccfe0cc.tar.gz
libgdm: Unref the manager propagated from task
This instance has already been reffed when passed to the task, and since we're stealing it with `g_task_propagate_pointer` it won't be unreffed. We could also do this in the `on_reauthentication_channel_opened` callback but since the new task will ref it anyway, we can just be clean and do it here.
-rw-r--r--libgdm/gdm-client.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libgdm/gdm-client.c b/libgdm/gdm-client.c
index f327344e..fa4ba842 100644
--- a/libgdm/gdm-client.c
+++ b/libgdm/gdm-client.c
@@ -390,7 +390,7 @@ on_got_manager_for_reauthentication (GdmClient *client,
(GAsyncReadyCallback)
on_reauthentication_channel_opened,
task);
-
+ g_object_unref (manager);
}
static GDBusConnection *
@@ -527,6 +527,8 @@ on_got_manager_for_opening_connection (GdmClient *client,
(GAsyncReadyCallback)
on_session_opened,
task);
+
+ g_object_unref (manager);
}
static GDBusConnection *