aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg
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 /lib/egg
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.'
Diffstat (limited to 'lib/egg')
-rwxr-xr-xlib/egg/egg-toolbar-editor.c3
1 files changed, 3 insertions, 0 deletions
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);
}