diff options
-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; } |