aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2006-03-06 13:40:18 +0800
committerSushma Rai <rsushma@src.gnome.org>2006-03-06 13:40:18 +0800
commit83c00f8e8dd410bbc75a55600bdfc312774f3e52 (patch)
tree9ec4f393840ac66676d43cdafb476517d628a753
parented27f0db521db046e62c86b3255bc1d77f2ee790 (diff)
downloadgsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar
gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.gz
gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.bz2
gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.lz
gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.xz
gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.tar.zst
gsoc2013-evolution-83c00f8e8dd410bbc75a55600bdfc312774f3e52.zip
Freeing GConfValue. See #329251.
svn path=/trunk/; revision=31650
-rw-r--r--plugins/exchange-operations/ChangeLog8
-rw-r--r--plugins/exchange-operations/exchange-config-listener.c1
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;
}