Don't leak parent_path. (#168435, Morten Welinder)

2005-02-24  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path):
	Don't leak parent_path.  (#168435, Morten Welinder)
This commit is contained in:
Matthias Clasen 2005-02-24 20:28:26 +00:00 committed by Matthias Clasen
parent 72c3b58732
commit 59d658187c
4 changed files with 19 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-02-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path):
Don't leak parent_path. (#168435, Morten Welinder)
Thu Feb 24 14:20:16 2005 Søren Sandmann <sandmann@redhat.com>
* gtk/gtkstyle.c: Add
@ -14,7 +19,7 @@ Thu Feb 24 14:20:16 2005 Søren Sandmann <sandmann@redhat.com>
2005-02-24 Matthias Clasen <mclasen@redhat.com>
Fix #167259, reported by Christian Persch:
Fix #167259, reported by Christian Persch:
* gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented
widget, even if we avoid the unrealizing.

View File

@ -1,3 +1,8 @@
2005-02-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path):
Don't leak parent_path. (#168435, Morten Welinder)
Thu Feb 24 14:20:16 2005 Søren Sandmann <sandmann@redhat.com>
* gtk/gtkstyle.c: Add
@ -14,7 +19,7 @@ Thu Feb 24 14:20:16 2005 Søren Sandmann <sandmann@redhat.com>
2005-02-24 Matthias Clasen <mclasen@redhat.com>
Fix #167259, reported by Christian Persch:
Fix #167259, reported by Christian Persch:
* gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented
widget, even if we avoid the unrealizing.

View File

@ -1,3 +1,8 @@
2005-02-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path):
Don't leak parent_path. (#168435, Morten Welinder)
Thu Feb 24 14:20:16 2005 Søren Sandmann <sandmann@redhat.com>
* gtk/gtkstyle.c: Add
@ -14,7 +19,7 @@ Thu Feb 24 14:20:16 2005 Søren Sandmann <sandmann@redhat.com>
2005-02-24 Matthias Clasen <mclasen@redhat.com>
Fix #167259, reported by Christian Persch:
Fix #167259, reported by Christian Persch:
* gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented
widget, even if we avoid the unrealizing.

View File

@ -4867,6 +4867,7 @@ gtk_file_chooser_default_select_path (GtkFileChooser *chooser,
return result;
}
gtk_file_path_free (parent_path);
return TRUE;
}