[Libosinfo] [libosinfo PATCH] tree: Return after calling g_task_return_error()
Fabiano Fidêncio
fidencio at redhat.com
Wed Jul 17 10:18:26 UTC 2019
Otherwise we'll end up reaching:
g_task_return_error: assertion 'task->ever_returned' failed.
Signed-off-by: Fabiano Fidêncio <fidencio at redhat.com>
---
This patch fixes the CI breakage with virt-manager and will be pushed
soon.
---
osinfo/osinfo_tree.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/osinfo/osinfo_tree.c b/osinfo/osinfo_tree.c
index 63604e8..1de68d2 100644
--- a/osinfo/osinfo_tree.c
+++ b/osinfo/osinfo_tree.c
@@ -701,7 +701,7 @@ static void on_content_read(GObject *source,
&error)) {
g_prefix_error(&error, _("Failed to load .treeinfo|treeinfo content: "));
g_task_return_error(data->res, error);
- create_from_location_async_data_free(data);
+ goto cleanup;
}
if (!(ret = load_keyinfo(data->location,
@@ -783,6 +783,7 @@ osinfo_tree_create_from_location_async_helper(CreateFromLocationAsyncData *data,
_("URL protocol is not supported"));
g_task_return_error(data->res, error);
+ return;
}
location = g_strdup_printf("%s/%s", data->location, treeinfo);
--
2.21.0
More information about the Libosinfo
mailing list