aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-03 10:59:06 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-03 10:59:06 +0800
commit20533c3be54a4e3fcb0ab23a15744d3093f8ad6f (patch)
tree1963dd65c5620184729726dde99a0b6d8754608a /plugins
parenta6095707f49437e95b4be5b57d9d2e1a5a47e1c7 (diff)
downloadgsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.tar
gsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.tar.gz
gsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.tar.bz2
gsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.tar.lz
gsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.tar.xz
gsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.tar.zst
gsoc2013-evolution-20533c3be54a4e3fcb0ab23a15744d3093f8ad6f.zip
Bug 542685 – [default-mailer] Leaking GConfValue
Diffstat (limited to 'plugins')
-rw-r--r--plugins/default-mailer/default-mailer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/default-mailer/default-mailer.c b/plugins/default-mailer/default-mailer.c
index 7069f46e7b..f52bd30855 100644
--- a/plugins/default-mailer/default-mailer.c
+++ b/plugins/default-mailer/default-mailer.c
@@ -78,10 +78,10 @@ org_gnome_default_mailer_check_default (EPlugin *ep, ESEventTargetUpgrade *targe
/* See whether the check default mailer key has already been set */
is_key = gconf_client_get(client, GCONF_KEY_CHECKDEFAULT, NULL);
- if(!is_key) {
+ if(!is_key)
gconf_client_set_bool(client, GCONF_KEY_CHECKDEFAULT, TRUE, NULL);
+ else
gconf_value_free (is_key);
- }
/* Check whether we're supposed to check whether or not we are the default mailer */
if(gconf_client_get_bool(client, GCONF_KEY_CHECKDEFAULT, NULL)) {