aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-08-21 06:22:00 +0800
committerChristian Persch <chpe@src.gnome.org>2005-08-21 06:22:00 +0800
commit86923cf976c004703da78a4d26c140f4def1128b (patch)
tree4a40728726c79cc589057dcfb1f2ce570dd035a2 /src
parentd76e6a0f5ccfcd696603a8f082a65955cdd99f0e (diff)
downloadgsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.tar
gsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.tar.gz
gsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.tar.bz2
gsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.tar.lz
gsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.tar.xz
gsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.tar.zst
gsoc2013-epiphany-86923cf976c004703da78a4d26c140f4def1128b.zip
Fix mem leak.
2005-08-21 Christian Persch <chpe@cvs.gnome.org> * src/ephy-tab.c: (ephy_tab_finalize): Fix mem leak.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-tab.c2
1 files changed, 2 insertions, 0 deletions
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);