From 6ef1e56479db644cff6717a838a8e63a54ce54da Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 16 Aug 2012 22:15:54 -0400 Subject: [PATCH] Fix leak in GFileAttributeInfoList MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by Ole André Vadla Ravnås, bug https://bugzilla.gnome.org/show_bug.cgi?id=627423 --- gio/gfileattribute.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gio/gfileattribute.c b/gio/gfileattribute.c index 2b298e268..847355847 100644 --- a/gio/gfileattribute.c +++ b/gio/gfileattribute.c @@ -963,6 +963,7 @@ g_file_attribute_info_list_unref (GFileAttributeInfoList *list) for (i = 0; i < list->n_infos; i++) g_free (list->infos[i].name); g_array_free (priv->array, TRUE); + g_free (list); } }