Fix a memory leak

As Pavel Vesin pointed out in bug 681064, we were leaking
the container_restyle_queue.
This commit is contained in:
Matthias Clasen 2012-08-06 23:37:36 -04:00
parent 2661403f88
commit e2c15e2791

View File

@ -1648,14 +1648,18 @@ gtk_container_idle_sizer (gpointer data)
current_time = g_get_monotonic_time (); current_time = g_get_monotonic_time ();
slist = container_restyle_queue; slist = container_restyle_queue;
container_restyle_queue = NULL; container_restyle_queue = NULL;
for (; slist; slist = slist->next) while (slist)
{ {
GSList *next = slist->next;
GtkContainer *container = slist->data; GtkContainer *container = slist->data;
container->priv->restyle_pending = FALSE; container->priv->restyle_pending = FALSE;
_gtk_style_context_validate (gtk_widget_get_style_context (GTK_WIDGET (container)), _gtk_style_context_validate (gtk_widget_get_style_context (GTK_WIDGET (container)),
current_time, current_time,
0); 0);
g_slist_free_1 (slist);
slist = next;
} }
/* we may be invoked with a container_resize_queue of NULL, because /* we may be invoked with a container_resize_queue of NULL, because