On Wednesday, 17 July 2019 12:18:26 CEST Fabiano FidĂȘncio wrote:
> Otherwise we'll end up reaching:
> g_task_return_error: assertion 'task->ever_returned' failed.
> 
> Signed-off-by: Fabiano FidĂȘncio <fiden...@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;

The changes seems fine -- shouldn't there be:

        create_from_location_async_data_free(data);

before the return?

-- 
Pino Toscano

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
Libosinfo mailing list
Libosinfo@redhat.com
https://www.redhat.com/mailman/listinfo/libosinfo

Reply via email to