Plugging memory leak in GtkCellArea (free ->style_detail at finalize time).

This commit is contained in:
Tristan Van Berkom
2011-01-16 18:15:07 +09:00
parent f793626a53
commit 4a5c435e9a

View File

@ -905,6 +905,7 @@ gtk_cell_area_finalize (GObject *object)
g_hash_table_destroy (priv->focus_siblings);
g_free (priv->current_path);
g_free (priv->style_detail);
G_OBJECT_CLASS (gtk_cell_area_parent_class)->finalize (object);
}