[evolution] Fix possible use of uninitialized variable



commit 798bf2a9944e2db24f271e3dfb99fb1f26117f58
Author: Milan Crha <mcrha redhat com>
Date:   Mon Jun 11 21:56:39 2012 +0200

    Fix possible use of uninitialized variable

 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 630810a..329cb13 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));



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]