From bd79c00537756ca24423e51f11cae008111ab7d2 Mon Sep 17 00:00:00 2001 From: Ravi Sankar Guntur Date: Sat, 4 Feb 2012 23:42:41 +0530 Subject: glib/tests: fix memory leak https://bugzilla.gnome.org/show_bug.cgi?id=669372 Signed-off-by: Ravi Sankar Guntur --- glib/tests/gdatetime.c | 1 + glib/tests/hash.c | 1 + 2 files changed, 2 insertions(+) diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c index 618e174d0..516c4fcb6 100644 --- a/glib/tests/gdatetime.c +++ b/glib/tests/gdatetime.c @@ -881,6 +881,7 @@ test_non_utf8_printf (void) if (strstr (setlocale (LC_ALL, NULL), "ja_JP") == NULL) { g_test_message ("locale ja_JP.eucjp not available, skipping non-UTF8 tests"); + g_free (oldlocale); return; } diff --git a/glib/tests/hash.c b/glib/tests/hash.c index 492e89fc8..290dc9c1f 100644 --- a/glib/tests/hash.c +++ b/glib/tests/hash.c @@ -942,6 +942,7 @@ test_destroy_modify (void) FakeFreeData *ffd = g_ptr_array_index (fake_free_data, i); g_assert (ffd->freed); + g_free (ffd->string); g_free (ffd); } -- cgit v1.2.1