aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--embed/ephy-history.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0feff8755..815a555f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-01-25 Christian Persch <chpe@cvs.gnome.org>
+
+ * embed/ephy-history.c: (ephy_history_finalize):
+
+ Fix mem leak.
+
2004-01-25 David Bordoley <bordoley@cvs.gnome.org>
* help/C/figures/ephy-screenshot.png:
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index ab6fcd5e1..984282448 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -574,6 +574,8 @@ ephy_history_finalize (GObject *object)
eel_gconf_notification_remove (eb->priv->disable_history_notifier_id);
+ g_free (eb->priv->xml_file);
+
LOG ("Global history finalized");
G_OBJECT_CLASS (parent_class)->finalize (object);