diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-02-02 05:17:46 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-02-02 05:17:46 +0800 |
commit | 7864d3ac6cb6527f871b3932a05a868cdb60e126 (patch) | |
tree | c92c94f55236656e0232d7e1e07dd2b1a599a866 /src/ephy-shell.c | |
parent | d8efa7bee4c2d57b3914840b9f33ef7d71e4d667 (diff) | |
download | gsoc2013-epiphany-7864d3ac6cb6527f871b3932a05a868cdb60e126.tar.gz gsoc2013-epiphany-7864d3ac6cb6527f871b3932a05a868cdb60e126.tar.zst gsoc2013-epiphany-7864d3ac6cb6527f871b3932a05a868cdb60e126.zip |
Plug a mem leak.
2005-02-01 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-shell.c: (toolbar_style_notifier):
Plug a mem leak.
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 619e64335..191f552bc 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -803,6 +803,8 @@ toolbar_style_notifier (GConfClient *client, flags |= new_flags; egg_toolbars_model_set_flags (model, i, new_flags); } + + g_free (pref); } GObject * |