forked from AuroraMiddleware/gtk
Don't leak path if we bail out early. (#132505, Christian Persch)
Thu Jan 29 00:59:03 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): Don't leak path if we bail out early. (#132505, Christian Persch)
This commit is contained in:
parent
b3ecd29090
commit
026542e29f
@ -1,3 +1,8 @@
|
||||
Thu Jan 29 00:59:03 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): Don't leak
|
||||
path if we bail out early. (#132505, Christian Persch)
|
||||
|
||||
Thu Jan 29 00:48:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_toggle_actions_full):
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Jan 29 00:59:03 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): Don't leak
|
||||
path if we bail out early. (#132505, Christian Persch)
|
||||
|
||||
Thu Jan 29 00:48:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_toggle_actions_full):
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Jan 29 00:59:03 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): Don't leak
|
||||
path if we bail out early. (#132505, Christian Persch)
|
||||
|
||||
Thu Jan 29 00:48:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_toggle_actions_full):
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Jan 29 00:59:03 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): Don't leak
|
||||
path if we bail out early. (#132505, Christian Persch)
|
||||
|
||||
Thu Jan 29 00:48:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_toggle_actions_full):
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Jan 29 00:59:03 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): Don't leak
|
||||
path if we bail out early. (#132505, Christian Persch)
|
||||
|
||||
Thu Jan 29 00:48:47 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_toggle_actions_full):
|
||||
|
@ -1719,7 +1719,10 @@ gtk_tree_model_filter_rows_reordered (GtkTreeModel *c_model,
|
||||
}
|
||||
|
||||
if (level->array->len < 1)
|
||||
return;
|
||||
{
|
||||
gtk_tree_path_free (path);
|
||||
return;
|
||||
}
|
||||
|
||||
/* NOTE: we do not bail out here if level->array->len < 2 like
|
||||
* GtkTreeModelSort does. This because we do some special tricky
|
||||
|
Loading…
Reference in New Issue
Block a user