diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2006-03-06 13:40:18 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2006-03-06 13:40:18 +0800 |
commit | 83c00f8e8dd410bbc75a55600bdfc312774f3e52 (patch) | |
tree | 9ec4f393840ac66676d43cdafb476517d628a753 /plugins | |
parent | ed27f0db521db046e62c86b3255bc1d77f2ee790 (diff) | |
download | gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.gz gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.zst gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.zip |
Freeing GConfValue. See #329251.
svn path=/trunk/; revision=31650
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-config-listener.c | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index ef33a36a00..434a4c929d 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,4 +1,10 @@ -2006-02-27 Sushma Rai <rsushma@novell.com> +2006-03-06 Sushma Rai <rsushma@novell.com> + + * exchange-config-listener.c + (exchange_config_listener_get_offline_status): Freeing GConfValue. + See #329251. + +2006-03-06 Sushma Rai <rsushma@novell.com> * exchange-config-listener.c (account_removed): Not unrefing the account passed to the signal handler. Fixes #332129. diff --git a/plugins/exchange-operations/exchange-config-listener.c b/plugins/exchange-operations/exchange-config-listener.c index 04cd5e92bc..341c3b4234 100644 --- a/plugins/exchange-operations/exchange-config-listener.c +++ b/plugins/exchange-operations/exchange-config-listener.c @@ -1085,6 +1085,7 @@ exchange_config_listener_get_offline_status (ExchangeConfigListener *excl, else *mode = ONLINE_MODE; + gconf_value_free (value); return status; } |