From 80c1fc5f7832007d59f39b2bf34cd901bb736855 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 15 Feb 2024 00:00:40 +0000 Subject: [PATCH] tests: Fix a double-free when exercising argument parsing g_option_context_add_group() takes ownership of the group that it's given, so we can't also free it. Fixes: fab0f8ed "test-context: Exercise some corner cases for merging filesystems" Signed-off-by: Simon McVittie --- tests/test-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-context.c b/tests/test-context.c index 475b1e0a..40185c2a 100644 --- a/tests/test-context.c +++ b/tests/test-context.c @@ -158,7 +158,7 @@ context_parse_args (FlatpakContext *context, oc = g_option_context_new (""); group = flatpak_context_get_options (context); - g_option_context_add_group (oc, group); + g_option_context_add_group (oc, g_steal_pointer (&group)); g_option_context_parse_strv (oc, &argv, error); }