diff options
author | Milan Crha <mcrha@redhat.com> | 2012-06-12 03:56:39 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-06-12 03:57:39 +0800 |
commit | 798bf2a9944e2db24f271e3dfb99fb1f26117f58 (patch) | |
tree | 17229a022fc0b36a63cb5076866853ad34e41e8f | |
parent | 8a82352b58b768e73b2fb1644aa8388737bf0a96 (diff) | |
download | gsoc2013-evolution-798bf2a9944e2db24f271e3dfb99fb1f26117f58.tar.gz gsoc2013-evolution-798bf2a9944e2db24f271e3dfb99fb1f26117f58.tar.zst gsoc2013-evolution-798bf2a9944e2db24f271e3dfb99fb1f26117f58.zip |
Fix possible use of uninitialized variable
-rw-r--r-- | mail/e-mail-account-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-mail-account-store.c b/mail/e-mail-account-store.c index 630810acaa..329cb13cbb 100644 --- a/mail/e-mail-account-store.c +++ b/mail/e-mail-account-store.c @@ -1181,7 +1181,7 @@ e_mail_account_store_remove_service (EMailAccountStore *store, CamelService *service) { GtkTreeIter iter; - gboolean proceed; + gboolean proceed = TRUE; g_return_if_fail (E_IS_MAIL_ACCOUNT_STORE (store)); g_return_if_fail (CAMEL_IS_SERVICE (service)); |