diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-02-25 03:38:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-25 03:38:57 +0800 |
commit | f154a49a01a23a189d6eef3a3668ce01395c9e08 (patch) | |
tree | 818b4cc283620bd204ae61a192b8d819ab055bfe /mail/mail-account-gui.c | |
parent | 9e43f181475e9783cf0c25732ef04ac60c3a2a40 (diff) | |
download | gsoc2013-evolution-f154a49a01a23a189d6eef3a3668ce01395c9e08.tar.gz gsoc2013-evolution-f154a49a01a23a189d6eef3a3668ce01395c9e08.tar.zst gsoc2013-evolution-f154a49a01a23a189d6eef3a3668ce01395c9e08.zip |
Make sure m->config_service is non-NULL before using
2003-02-24 Jeffrey Stedfast <fejj@ximian.com>
* mail-session.c (request_password): Make sure m->config_service
is non-NULL before using m->config_service->save_passwd since PGP
stuff will not have a config_service. Fixes bug #38149.
* mail-account-gui.c (mail_account_gui_save):
s/e_account_list_changed/e_account_list_change - otherwise we get
an undefined symbol and we crash :-)
svn path=/trunk/; revision=20043
Diffstat (limited to 'mail/mail-account-gui.c')
-rw-r--r-- | mail/mail-account-gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index bb458adebf..12840630db 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1975,7 +1975,7 @@ mail_account_gui_save (MailAccountGui *gui) if (is_new) { mail_config_add_account (account); } else { - e_account_list_changed(mail_config_get_accounts (), account); + e_account_list_change (mail_config_get_accounts (), account); } /* if the account provider is something we can stick |