aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-tab.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index df7422c48..2af67f965 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-21 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/ephy-tab.c: (ephy_tab_finalize):
+
+ Fix mem leak.
+
2005-08-17 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-persist.h:
diff --git a/src/ephy-tab.c b/src/ephy-tab.c
index 2236cdd18..d23667c12 100644
--- a/src/ephy-tab.c
+++ b/src/ephy-tab.c
@@ -824,7 +824,9 @@ ephy_tab_finalize (GObject *object)
}
g_free (priv->title);
+ g_free (priv->loading_title);
g_free (priv->address);
+ g_free (priv->typed_address);
g_free (priv->icon_address);
g_free (priv->link_message);
g_free (priv->status_message);