diff options
author | Chris Toshok <toshok@ximian.com> | 2004-06-23 04:15:39 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-06-23 04:15:39 +0800 |
commit | 6867a34fe5ec4c2781f8643239a151bb6b6c986d (patch) | |
tree | e60f7ba5b9f09c7c290db17ba814bcfdc07a71a1 | |
parent | cd139a86fd23cfdc4411a7a851334cc484df10f0 (diff) | |
download | gsoc2013-evolution-6867a34fe5ec4c2781f8643239a151bb6b6c986d.tar.gz gsoc2013-evolution-6867a34fe5ec4c2781f8643239a151bb6b6c986d.tar.zst gsoc2013-evolution-6867a34fe5ec4c2781f8643239a151bb6b6c986d.zip |
gtk_tree_model_get on a string field allocates the return value. free
2004-06-22 Chris Toshok <toshok@ximian.com>
* em-folder-tree.c (render_pixbuf): gtk_tree_model_get on a string
field allocates the return value. free path.
svn path=/trunk/; revision=26456
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-folder-tree.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 946772f93e..230bbd67b4 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-06-22 Chris Toshok <toshok@ximian.com> + + * em-folder-tree.c (render_pixbuf): gtk_tree_model_get on a string + field allocates the return value. free path. + 2004-06-22 Jeffrey Stedfast <fejj@novell.com> * em-popup.c (emp_apps_open_in): If the app requires a terminal to diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index 16fcfb6c38..f1d5ea59ed 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -291,6 +291,7 @@ render_pixbuf (GtkTreeViewColumn *column, GtkCellRenderer *renderer, } g_object_set (renderer, "pixbuf", pixbuf, "visible", !is_store, NULL); + g_free (path); } static void |