From 83301d8c1f678fbcd26129ba4bc4cc2332e15bdd Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Sun, 10 Nov 2013 15:55:35 +0100 Subject: [PATCH] accumulator: Fix leak in test https://bugzilla.gnome.org/show_bug.cgi?id=711779 --- tests/gobject/accumulator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/gobject/accumulator.c b/tests/gobject/accumulator.c index f8a6c1287..f994a7668 100644 --- a/tests/gobject/accumulator.c +++ b/tests/gobject/accumulator.c @@ -303,5 +303,7 @@ main (int argc, g_variant_unref (variant_result); g_assert (variant_finalised); + g_object_unref (object); + return 0; }