From ffe7a3293f7e69fab1211f014a54b78fb7611ee0 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 5 Feb 2012 16:10:48 +0100 Subject: [PATCH] resources: Plug a mem leak ==27020== 44 (24 direct, 20 indirect) bytes in 1 blocks are definitely lost in loss record 684 of 936 ==27020== at 0x402AD89: malloc (vg_replace_malloc.c:236) ==27020== by 0x4084724: standard_malloc (gmem.c:85) ==27020== by 0x40847C7: g_malloc (gmem.c:159) ==27020== by 0x409B1E1: g_slice_alloc (gslice.c:1003) ==27020== by 0x40BC038: g_variant_get_child_value (gvariant-core.c:969) ==27020== by 0x40B5277: g_variant_get_variant (gvariant.c:749) ==27020== by 0x4273182: gvdb_table_value_from_item (gvdb-reader.c:478) ==27020== by 0x42731E8: gvdb_table_get_value (gvdb-reader.c:509) ==27020== by 0x4228B36: do_lookup (gresource.c:280) ==27020== by 0x4228F56: g_resource_get_info (gresource.c:492) --- gio/gresource.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gio/gresource.c b/gio/gresource.c index ce4476f..9282843 100644 --- a/gio/gresource.c +++ b/gio/gresource.c @@ -310,6 +310,7 @@ static gboolean do_lookup (GResource *resource, *data_size = g_variant_get_size (array) - 1; } g_variant_unref (array); + g_variant_unref (value); res = TRUE; } -- 2.7.4