From 8df83706fa032f44765526647b8c5176174a0ede Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 21 Jun 2012 12:05:39 -0400 Subject: [PATCH] tests: Add missing va_end() --- gio/tests/gapplication.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gio/tests/gapplication.c b/gio/tests/gapplication.c index b7138cfba..2e0ea9d01 100644 --- a/gio/tests/gapplication.c +++ b/gio/tests/gapplication.c @@ -70,6 +70,8 @@ spawn (const gchar *expected_stdout, g_ptr_array_add (array, NULL); args = (gchar **) g_ptr_array_free (array, FALSE); + va_end (ap); + data = g_slice_new (ChildData); data->expected_stdout = expected_stdout;