]> Pileus Git - ~andy/gtk/commitdiff
Plug leak.
authorMorten Welinder <terra@gnome.org>
Thu, 11 Mar 2004 21:55:59 +0000 (21:55 +0000)
committerMorten Welinder <mortenw@src.gnome.org>
Thu, 11 Mar 2004 21:55:59 +0000 (21:55 +0000)
2004-03-11  Morten Welinder  <terra@gnome.org>

* gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkpathbar.c

index f86149313eb6fec5986c4a747477a88510a4875c..6484380d41c398658b6457b6e18a616961861cf2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-03-11  Morten Welinder  <terra@gnome.org>
+
+       * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.
+
 Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
index f86149313eb6fec5986c4a747477a88510a4875c..6484380d41c398658b6457b6e18a616961861cf2 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-11  Morten Welinder  <terra@gnome.org>
+
+       * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.
+
 Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
index f86149313eb6fec5986c4a747477a88510a4875c..6484380d41c398658b6457b6e18a616961861cf2 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-11  Morten Welinder  <terra@gnome.org>
+
+       * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.
+
 Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
index f86149313eb6fec5986c4a747477a88510a4875c..6484380d41c398658b6457b6e18a616961861cf2 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-11  Morten Welinder  <terra@gnome.org>
+
+       * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.
+
 Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
index f86149313eb6fec5986c4a747477a88510a4875c..6484380d41c398658b6457b6e18a616961861cf2 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-11  Morten Welinder  <terra@gnome.org>
+
+       * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.
+
 Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
index f6996aa9910f41b636b029d441d0b367911acc43..703e99214ab3e4b385511c72fa5e6cd1df9c6b3a 100644 (file)
@@ -1106,4 +1106,5 @@ _gtk_path_bar_set_file_system (GtkPathBar    *path_bar,
   path_bar->home_path = gtk_file_system_filename_to_path (path_bar->file_system, home);
   path_bar->desktop_path = gtk_file_system_filename_to_path (path_bar->file_system, desktop);
   path_bar->root_path = gtk_file_system_filename_to_path (path_bar->file_system, "/");
+  g_free (desktop);
 }