summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-02-24 20:28:26 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-02-24 20:28:26 +0000
commit59d658187c7ea4a43960490c167bf40ae9ecb049 (patch)
treec7a35ffa181a72b1dcc1d31924f4100ab795d155
parent72c3b58732f48d285eba8fc61f4d171d1391adc5 (diff)
downloadgtk+-59d658187c7ea4a43960490c167bf40ae9ecb049.tar.gz
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)
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLog.pre-2-107
-rw-r--r--ChangeLog.pre-2-87
-rw-r--r--gtk/gtkfilechooserdefault.c1
4 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 116257453e..d8090ef164 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 116257453e..d8090ef164 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 116257453e..d8090ef164 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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.
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c
index 22738430bd..eb2df63d73 100644
--- a/gtk/gtkfilechooserdefault.c
+++ b/gtk/gtkfilechooserdefault.c
@@ -4867,6 +4867,7 @@ gtk_file_chooser_default_select_path (GtkFileChooser *chooser,
return result;
}
+ gtk_file_path_free (parent_path);
return TRUE;
}