aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-16 02:07:09 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-16 02:07:09 +0800
commit50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11 (patch)
tree79efada031c85bb140b3113d6cb6750da24c62d3
parentce96445245da7a6b1f5d550ea570242b7852715a (diff)
downloadgsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.tar
gsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.tar.gz
gsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.tar.bz2
gsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.tar.lz
gsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.tar.xz
gsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.tar.zst
gsoc2013-epiphany-50a6e0b49c1db4eef8eccbe3a1f3930c5bd2de11.zip
Fix mem leaks.'
2004-05-15 Christian Persch <chpe@cvs.gnome.org> * lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_finalize): Fix mem leaks.'
-rw-r--r--ChangeLog6
-rwxr-xr-xlib/egg/egg-toolbar-editor.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cd90b2bae..9eaa66122 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-05-15 Christian Persch <chpe@cvs.gnome.org>
+ * lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_finalize):
+
+ Fix mem leaks.
+
+2004-05-15 Christian Persch <chpe@cvs.gnome.org>
+
* embed/mozilla/mozilla-embed-persist.cpp:
Fix refcount leak.
diff --git a/lib/egg/egg-toolbar-editor.c b/lib/egg/egg-toolbar-editor.c
index 34cbd6b48..7f0aaf235 100755
--- a/lib/egg/egg-toolbar-editor.c
+++ b/lib/egg/egg-toolbar-editor.c
@@ -268,6 +268,9 @@ egg_toolbar_editor_finalize (GObject *object)
g_object_unref (editor->priv->model);
}
+ g_list_free (editor->priv->default_actions_list);
+ g_list_free (editor->priv->actions_list);
+
G_OBJECT_CLASS (parent_class)->finalize (object);
}