From e6de9c6940cc123e9f843e3069f73a75a887487f Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Sun, 10 Nov 2013 15:55:56 +0100 Subject: [PATCH] gvalue-test: Fix leaks in test https://bugzilla.gnome.org/show_bug.cgi?id=711779 --- tests/gobject/gvalue-test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/gobject/gvalue-test.c b/tests/gobject/gvalue-test.c index fa7bede..b928d8b 100644 --- a/tests/gobject/gvalue-test.c +++ b/tests/gobject/gvalue-test.c @@ -355,6 +355,7 @@ test_copying (void) error = lcopy (&value, &c); g_assert (error == NULL); g_assert (strcmp (c, "string ?") == 0); + g_free (c); } { @@ -380,6 +381,7 @@ test_copying (void) g_assert (g_variant_is_of_type (c, G_VARIANT_TYPE ("u"))); g_assert_cmpuint (g_variant_get_uint32 (c), ==, 42); g_variant_unref (c); + g_value_unset (&value); } } -- 2.7.4