From b837cdde69fa39ed10aaf8791ab656ad41dedeb0 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 25 Jun 2012 18:14:10 -0400 Subject: [PATCH] gio/tests/actions: Plug a memory leak --- gio/tests/actions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gio/tests/actions.c b/gio/tests/actions.c index ad79a823f..eaf13b078 100644 --- a/gio/tests/actions.c +++ b/gio/tests/actions.c @@ -540,6 +540,7 @@ list_cb (GObject *source, g_assert (v); g_variant_get (v, "(^a&s)", &actions); g_assert_cmpint (g_strv_length (actions), ==, G_N_ELEMENTS (exported_entries)); + g_strfreev (actions); g_variant_unref (v); g_main_loop_quit (loop); }