From 25a74360022714d8dcb51b1c306069255da92079 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 17 Dec 2006 19:16:03 +0000 Subject: Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo. 2006-12-17 Christian Persch * src/ephy-history-window.c: (cmd_delete): Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo. --- ChangeLog | 6 ++++++ src/ephy-history-window.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index aa1da5e73..733bbca44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-12-17 Christian Persch + + * src/ephy-history-window.c: (cmd_delete): + + Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo. + 2006-12-17 Christian Persch * src/ephy-notebook.c: (ephy_notebook_init), (sync_label): 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); } } -- cgit v1.2.3