Forgot to return the allocated data in async_op_wrapper_new

This commit is contained in:
Alexander Larsson 2009-05-15 20:42:04 +02:00
parent a48fc53251
commit d3a2c457cb

View File

@ -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