diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-07-01 03:21:59 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-07-01 03:21:59 +0800 |
commit | 0e41bd2003b365a6ccb4618ec3d93575e4c367dd (patch) | |
tree | b964b2d30aff6d97348a16ba9ed96c1eb7bc77c0 /plugins/default-mailer/default-mailer.c | |
parent | 953c33faba56e7c5115ef2ca81029210f70cca9a (diff) | |
download | gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.gz gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.bz2 gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.lz gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.xz gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.zst gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.zip |
** Fix for bug #448970
svn path=/trunk/; revision=33732
Diffstat (limited to 'plugins/default-mailer/default-mailer.c')
-rw-r--r-- | plugins/default-mailer/default-mailer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/default-mailer/default-mailer.c b/plugins/default-mailer/default-mailer.c index a8a1b8d037..b75673d8f6 100644 --- a/plugins/default-mailer/default-mailer.c +++ b/plugins/default-mailer/default-mailer.c @@ -76,9 +76,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); - gconf_value_free (is_key); + 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)) { |