diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-16 02:06:30 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-16 02:06:30 +0800 |
commit | 7933945474d076b7f0b4819e0a737c0ffe6c8d45 (patch) | |
tree | 6eb5d1fdc668abad513f323acd2eb306efcc0b8d /lib/egg/egg-toolbar-editor.c | |
parent | 66c33032fe0787f5cfbbd50c6aee52d083a0c94f (diff) | |
download | gsoc2013-epiphany-7933945474d076b7f0b4819e0a737c0ffe6c8d45.tar.gz 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/egg-toolbar-editor.c')
-rwxr-xr-x | lib/egg/egg-toolbar-editor.c | 3 |
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); } |