mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
tests: Fix some minor memory leaks in gsubprocess-testprog
This just makes the valgrind logs a bit cleaner so we can find real problems in future. Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
d3928abe45
commit
90ca3b4dd0
@ -200,12 +200,17 @@ main (int argc, char **argv)
|
||||
GOptionContext *context;
|
||||
GError *error = NULL;
|
||||
const char *mode;
|
||||
gboolean ret;
|
||||
|
||||
context = g_option_context_new ("MODE - Test GSubprocess stuff");
|
||||
g_option_context_add_main_entries (context, options, NULL);
|
||||
if (!g_option_context_parse (context, &argc, &argv, &error))
|
||||
ret = g_option_context_parse (context, &argc, &argv, &error);
|
||||
g_option_context_free (context);
|
||||
|
||||
if (!ret)
|
||||
{
|
||||
g_printerr ("%s: %s\n", argv[0], error->message);
|
||||
g_error_free (error);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user