mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-15 14:43:34 +02:00
Fix leak in GFileAttributeInfoList
Patch by Ole André Vadla Ravnås, bug https://bugzilla.gnome.org/show_bug.cgi?id=627423
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user