diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-30 03:40:08 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:22 +0800 |
commit | 5f7fff50655c7daed810f978c6b8d94ef9d0f2fb (patch) | |
tree | 0da6358f1220adf02d48036697fdc90cb1783510 /mail | |
parent | 8055965328e7bb59c0cc23d3030b89025999f5aa (diff) | |
download | gsoc2013-evolution-5f7fff50655c7daed810f978c6b8d94ef9d0f2fb.tar.gz gsoc2013-evolution-5f7fff50655c7daed810f978c6b8d94ef9d0f2fb.tar.zst gsoc2013-evolution-5f7fff50655c7daed810f978c6b8d94ef9d0f2fb.zip |
e_mail_store_add_by_account(): Fix a potential use-before-set.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-mail-store.c b/mail/e-mail-store.c index 08c676d618..e5d2012a65 100644 --- a/mail/e-mail-store.c +++ b/mail/e-mail-store.c @@ -294,7 +294,7 @@ CamelStore * e_mail_store_add_by_account (EMailSession *session, EAccount *account) { - CamelService *service; + CamelService *service = NULL; CamelProvider *provider; CamelURL *url; gboolean skip; |