diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-12-18 03:16:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-12-18 03:16:03 +0800 |
commit | 25a74360022714d8dcb51b1c306069255da92079 (patch) | |
tree | 73b89715beb2574e77af3d39da8d84a01721ba56 | |
parent | f530d890b1edde32f350317fb9ef9459af53d0be (diff) | |
download | gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.tar gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.tar.gz gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.tar.bz2 gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.tar.lz gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.tar.xz gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.tar.zst gsoc2013-epiphany-25a74360022714d8dcb51b1c306069255da92079.zip |
Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo.
2006-12-17 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-history-window.c: (cmd_delete):
Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-history-window.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2006-12-17 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-history-window.c: (cmd_delete): + + Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo. + +2006-12-17 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-notebook.c: (ephy_notebook_init), (sync_label): Limit tab tooltip length. Bug #324052, patch by Diego Escalante diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 88fe946fe..45f64fdcf 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -475,6 +475,8 @@ cmd_delete (GtkAction *action, { ephy_node_view_remove (EPHY_NODE_VIEW (editor->priv->sites_view)); } + + g_list_free (selected); } } |