aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-16 02:06:30 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-16 02:06:30 +0800
commit7933945474d076b7f0b4819e0a737c0ffe6c8d45 (patch)
tree6eb5d1fdc668abad513f323acd2eb306efcc0b8d /lib/egg
parent66c33032fe0787f5cfbbd50c6aee52d083a0c94f (diff)
downloadgsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar
gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar.gz
gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar.bz2
gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar.lz
gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar.xz
gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar.zst
gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.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 dbbb9bd69..93b0a7928 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);
}