diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-06-15 13:22:46 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-06-15 13:22:46 +0800 |
commit | fbf8d7bd849e334416eafce022496acb31b45bc7 (patch) | |
tree | 3eb6b9717cfef890b93b0106c1beba95e57375bb | |
parent | d9ebf288b8082c89a9b5c808c2554a0468a20384 (diff) | |
download | gsoc2013-evolution-fbf8d7bd849e334416eafce022496acb31b45bc7.tar.gz gsoc2013-evolution-fbf8d7bd849e334416eafce022496acb31b45bc7.tar.zst gsoc2013-evolution-fbf8d7bd849e334416eafce022496acb31b45bc7.zip |
Fixed a crash while trying ot edit non-exchange account.
svn path=/trunk/; revision=29502
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index c54804ec9c..351fcbc7fe 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,11 @@ +2005-06-15 Sushma Rai <rsushma@novell.com> + + * exchange-account-setup.c (org_gnome_exchange_settings): Trying to + get the exchange account, after checking the account selected in + an exchange account or not. It fixes a crash, when trying to edit an + non-exchange account, where e-d-s and evolution are built with exchange + support, but exchange account is not configured. + 2005-06-14 Sarfaaz Ahmed <asarfraaz@novell.com> * exchange-account-setup.c : Fixed some warnings diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index 0aadf230a9..06dc3fbb63 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -215,8 +215,6 @@ org_gnome_exchange_settings(EPlugin *epl, EConfigHookItemFactoryData *data) GtkTextBuffer *buffer; GtkTextIter start, end; - account = exchange_operations_get_exchange_account (); - target_account = (EMConfigTargetAccount *)data->config->target; source_url = e_account_get_string (target_account->account, E_ACCOUNT_SOURCE_URL); url = camel_url_new(source_url, NULL); @@ -232,6 +230,8 @@ org_gnome_exchange_settings(EPlugin *epl, EConfigHookItemFactoryData *data) return data->old; } + account = exchange_operations_get_exchange_account (); + oof_data = g_new0 (OOFData, 1); oof_data->state = FALSE; |