mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Plug memory leaks caused by wrong use of g_slist_remove_link(). (#405515,
2007-04-28 Matthias Clasen <mclasen@redhat.com> * gdk/win32/bdfcursor.c (compose_cursors_from_fonts): * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_reorder): * gtk/gtkfilesystemmodel.c (got_root_folder_cb): (get_children_folder_cb): Plug memory leaks caused by wrong use of g_slist_remove_link(). (#405515, Nicolas Peninguy) svn path=/trunk/; revision=17671
This commit is contained in:
parent
d69030de81
commit
b72dfb8c4e
@ -1,3 +1,11 @@
|
||||
2007-04-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/win32/bdfcursor.c (compose_cursors_from_fonts):
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_cell_layout_reorder):
|
||||
* gtk/gtkfilesystemmodel.c (got_root_folder_cb):
|
||||
(get_children_folder_cb): Plug memory leaks caused by wrong
|
||||
use of g_slist_remove_link(). (#405515, Nicolas Peninguy)
|
||||
|
||||
2007-04-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* demos/gtk-demo/printing.c: Fix the headers in the print
|
||||
|
@ -279,7 +279,7 @@ static void compose_cursors_from_fonts()
|
||||
{
|
||||
GSList *l;
|
||||
|
||||
for (l = g_slist_copy(fonts); l; l = g_slist_remove_link(l,l))
|
||||
for (l = g_slist_copy (fonts); l; l = g_slist_delete_link (l,l))
|
||||
{
|
||||
font_info_t *fi = l->data;
|
||||
gchar *name;
|
||||
|
@ -4373,7 +4373,7 @@ gtk_combo_box_cell_layout_reorder (GtkCellLayout *layout,
|
||||
|
||||
g_return_if_fail (link != NULL);
|
||||
|
||||
combo_box->priv->cells = g_slist_remove_link (combo_box->priv->cells, link);
|
||||
combo_box->priv->cells = g_slist_delete_link (combo_box->priv->cells, link);
|
||||
combo_box->priv->cells = g_slist_insert (combo_box->priv->cells, info,
|
||||
position);
|
||||
|
||||
|
@ -615,7 +615,7 @@ got_root_folder_cb (GtkFileSystemHandle *handle,
|
||||
if (!tmp_list)
|
||||
goto out;
|
||||
|
||||
model->pending_handles = g_slist_remove_link (model->pending_handles,
|
||||
model->pending_handles = g_slist_delete_link (model->pending_handles,
|
||||
tmp_list);
|
||||
|
||||
if (cancelled || !folder)
|
||||
@ -1528,7 +1528,7 @@ get_children_get_folder_cb (GtkFileSystemHandle *handle,
|
||||
if (!tmp_list)
|
||||
goto out;
|
||||
|
||||
data->model->pending_handles = g_slist_remove_link (data->model->pending_handles, tmp_list);
|
||||
data->model->pending_handles = g_slist_delete_link (data->model->pending_handles, tmp_list);
|
||||
|
||||
if (cancelled || !folder)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user