From 44bd2ab07e81016c961a59f0a66f4351ac5822cf Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Sat, 9 Nov 2013 20:52:42 +0100 Subject: [PATCH] unicode-encoding: Fix leaks in test https://bugzilla.gnome.org/show_bug.cgi?id=711751 --- tests/unicode-encoding.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/unicode-encoding.c b/tests/unicode-encoding.c index a231f1029..75c982e3e 100644 --- a/tests/unicode-encoding.c +++ b/tests/unicode-encoding.c @@ -416,5 +416,8 @@ main (int argc, char **argv) line++; } + g_free (testfile); + g_array_free (ucs4, TRUE); + g_free (contents); return exit_status; }