diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-shell.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2005-02-01 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-shell.c: (toolbar_style_notifier): + + Plug a mem leak. + +2005-02-01 Christian Persch <chpe@cvs.gnome.org> + * data/default-prefs-common.js: * data/default-prefs-toolkit.js: 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 * |