diff options
author | Daiki Ueno <dueno@src.gnome.org> | 2022-05-08 09:32:23 +0200 |
---|---|---|
committer | Daiki Ueno <dueno@src.gnome.org> | 2022-05-09 16:27:44 +0200 |
commit | d768ce4efeb5c726ddfed2d1c1c060454ce20a81 (patch) | |
tree | fd838abbbaa4c1d256f34933187014a07763dc4b /libsecret/secret-collection.c | |
parent | ef2fc44363ae0dc9005a44cb9d6c91d1a2096fdd (diff) | |
download | libsecret-d768ce4efeb5c726ddfed2d1c1c060454ce20a81.tar.gz |
Properly chain-up GTasks around GDBusProxy::init_async
Our GAsyncInitable implementations in SecretService, SecretCollection,
and SecretItem internally wrap GDBusProxy::init_async and perform
additional error processing. To chain up we used to pass around a
single GTask, which caused an issue in the (additional) error path:
GDBusProxy::init_async may have already called
g_task_return_boolean(task, TRUE) and in that case GLib produces the
following warning:
g_task_return_error: assertion '!task->ever_returned' failed
This fixes the issue by creating a temporary GTask around
GDBusProxy::init_async call.
Signed-off-by: Daiki Ueno <dueno@src.gnome.org>
Diffstat (limited to 'libsecret/secret-collection.c')
-rw-r--r-- | libsecret/secret-collection.c | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/libsecret/secret-collection.c b/libsecret/secret-collection.c index 5f40632..0ce32a5 100644 --- a/libsecret/secret-collection.c +++ b/libsecret/secret-collection.c @@ -625,17 +625,35 @@ on_init_service (GObject *source, g_clear_object (&task); } +typedef struct { + GAsyncReadyCallback callback; + gpointer user_data; +} InitBaseClosure; + +static void +secret_collection_async_initable_init_async (GAsyncInitable *initable, + int io_priority, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + static void on_init_base (GObject *source, GAsyncResult *result, gpointer user_data) { - GTask *task = G_TASK (user_data); - GCancellable *cancellable = g_task_get_cancellable (task); + GTask *base_task = G_TASK (user_data); + InitBaseClosure *base = g_task_get_task_data (base_task); + GCancellable *cancellable = g_task_get_cancellable (base_task); + GTask *task; SecretCollection *self = SECRET_COLLECTION (source); GDBusProxy *proxy = G_DBUS_PROXY (self); GError *error = NULL; + task = g_task_new (source, cancellable, base->callback, base->user_data); + g_task_set_source_tag (task, secret_collection_async_initable_init_async); + g_clear_object (&base_task); + if (!secret_collection_async_initable_parent_iface->init_finish (G_ASYNC_INITABLE (self), result, &error)) { g_task_return_error (task, g_steal_pointer (&error)); @@ -665,10 +683,16 @@ secret_collection_async_initable_init_async (GAsyncInitable *initable, gpointer user_data) { GTask *task; + InitBaseClosure *base; - task = g_task_new (initable, cancellable, callback, user_data); + task = g_task_new (initable, cancellable, NULL, NULL); g_task_set_source_tag (task, secret_collection_async_initable_init_async); + base = g_new0 (InitBaseClosure, 1); + base->callback = callback; + base->user_data = user_data; + g_task_set_task_data (task, base, g_free); + secret_collection_async_initable_parent_iface->init_async (initable, io_priority, cancellable, |