mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-26 10:54:59 -04:00
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 <smcv@collabora.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user