From ccbafd0f14cca899c07cd6a630096125988be8a9 Mon Sep 17 00:00:00 2001 From: David Zeuthen Date: Mon, 19 Apr 2010 10:42:42 -0400 Subject: [PATCH] =?UTF-8?q?Bug=20615111=20=E2=80=93=20GAsyncInitable's=20d?= =?UTF-8?q?efault=20implementation=20is=20broken?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: David Zeuthen --- gio/gasyncinitable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gasyncinitable.c b/gio/gasyncinitable.c index 05e17e23e..c369a4e6a 100644 --- a/gio/gasyncinitable.c +++ b/gio/gasyncinitable.c @@ -201,7 +201,7 @@ async_init_thread (GSimpleAsyncResult *res, { GError *error = NULL; - if (!g_initable_init (G_INITABLE (res), cancellable, &error)) + if (!g_initable_init (G_INITABLE (object), cancellable, &error)) { g_simple_async_result_set_from_error (res, error); g_error_free (error);