From 09ae89206ea119104dfece5176cc868175ce9304 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Wed, 15 Dec 2010 15:53:03 +0100 Subject: Bug #634385 - Crash in smtp_connect --- mail/e-mail-session.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'mail/e-mail-session.c') diff --git a/mail/e-mail-session.c b/mail/e-mail-session.c index debaf28cea..68d553e97d 100644 --- a/mail/e-mail-session.c +++ b/mail/e-mail-session.c @@ -626,6 +626,9 @@ mail_session_get_password (CamelSession *session, if (ret == NULL || (flags & CAMEL_SESSION_PASSWORD_REPROMPT)) { gboolean remember; + g_free (ret); + ret = NULL; + if (url) { if ((account = e_get_account_by_source_url (url))) config_service = account->source; @@ -674,6 +677,9 @@ mail_session_get_password (CamelSession *session, ret = e_passwords_ask_password (title, domain, key, prompt, eflags, &remember, NULL); + if (!ret) + e_passwords_forget_password (domain, key); + g_free (title); if (ret && config_service) -- cgit v1.2.3