aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-12-18 03:16:03 +0800
committerChristian Persch <chpe@src.gnome.org>2006-12-18 03:16:03 +0800
commit25a74360022714d8dcb51b1c306069255da92079 (patch)
tree73b89715beb2574e77af3d39da8d84a01721ba56
parentf530d890b1edde32f350317fb9ef9459af53d0be (diff)
downloadgsoc2013-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--ChangeLog6
-rw-r--r--src/ephy-history-window.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index aa1da5e73..733bbca44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}
}