diff options
-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); } } |