Bug 554696 – invalid free function used

svn path=/trunk/; revision=21569
This commit is contained in:
Christian Persch 2008-10-02 19:47:45 +00:00
parent 87d51e0ab4
commit ab8c161601
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-10-02 Christian Persch
Bug 554696 invalid free function used
* gtk/gtkfilesystemmodel.c: Use the right free func.
2008-10-02 Christian Persch
Bug 554691 mem leak in filechooser

View File

@ -1022,7 +1022,7 @@ ref_path_cb (GCancellable *cancellable,
goto out;
}
g_object_unref (info->files);
g_object_unref (info->files->data);
info->files = g_slist_remove (info->files, info->files->data);
if (g_slist_length (info->files) < 1)
@ -1070,7 +1070,8 @@ ref_path_cb (GCancellable *cancellable,
out:
if (info->node)
unref_node_and_parents (info->model, info->node);
g_object_unref (info->files);
g_slist_foreach (info->files, (GFunc)g_object_unref, NULL);
g_slist_free (info->files);
g_slist_foreach (info->cleanups, (GFunc)g_object_unref, NULL);
g_slist_free (info->cleanups);
g_object_unref (info->model);