summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-08-02 03:29:33 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-08-02 10:24:12 -0300
commit5596feae9b51563a33f1bffc6a370e6ba556adb7 (patch)
treeef0ba52868fd2ff1fc7d44f1e215c5f2b7f6a88a
parent50d5666db04f54d0fd6f777348af6c6533c00b2f (diff)
downloadgtk+-5596feae9b51563a33f1bffc6a370e6ba556adb7.tar.gz
listbox: Store child iter in a variable when removing
Unparenting a GtkListBoxRow can drop its last reference, which will free its memory. Right after unparenting, though, we were accessing the row's iter - which assumes that the row is still alive. This causes a crash when, for example, binding two or more models to the listbox. Fix that by storing the iter in a variable, and not trying to access it after unparenting. After unparenting, the variables that are potentially garbage were explicitly assigned NULL for clarity. Fixes https://gitlab.gnome.org/GNOME/gtk/issues/1258
-rw-r--r--gtk/gtklistbox.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c
index 96aff8de30..8702c5086f 100644
--- a/gtk/gtklistbox.c
+++ b/gtk/gtklistbox.c
@@ -2262,6 +2262,7 @@ gtk_list_box_remove (GtkContainer *container,
gboolean was_visible;
gboolean was_selected;
GtkListBoxRow *row;
+ GSequenceIter *iter;
GSequenceIter *next;
was_visible = gtk_widget_get_visible (child);
@@ -2295,7 +2296,8 @@ gtk_list_box_remove (GtkContainer *container,
}
row = GTK_LIST_BOX_ROW (child);
- if (g_sequence_iter_get_sequence (ROW_PRIV (row)->iter) != priv->children)
+ iter = ROW_PRIV (row)->iter;
+ if (g_sequence_iter_get_sequence (iter) != priv->children)
{
g_warning ("Tried to remove non-child %p", child);
return;
@@ -2326,9 +2328,15 @@ gtk_list_box_remove (GtkContainer *container,
if (row == priv->drag_highlighted_row)
gtk_list_box_drag_unhighlight_row (box);
- next = gtk_list_box_get_next_visible (box, ROW_PRIV (row)->iter);
+ next = gtk_list_box_get_next_visible (box, iter);
gtk_widget_unparent (child);
- g_sequence_remove (ROW_PRIV (row)->iter);
+ g_sequence_remove (iter);
+
+ /* After unparenting, those values are garbage */
+ iter = NULL;
+ row = NULL;
+ child = NULL;
+
if (gtk_widget_get_visible (widget))
gtk_list_box_update_header (box, next);