From d3a2c457cb55730181c04c8d6d1f611ee555c250 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 15 May 2009 20:42:04 +0200 Subject: [PATCH] Forgot to return the allocated data in async_op_wrapper_new --- gio/gfileiostream.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gio/gfileiostream.c b/gio/gfileiostream.c index 9491e76..3cc72ed 100644 --- a/gio/gfileiostream.c +++ b/gio/gfileiostream.c @@ -603,6 +603,8 @@ async_op_wrapper_new (gpointer object, data->object = g_object_ref (object); data->callback = callback; data->user_data = user_data; + + return data; } static void -- 2.7.4