From 01ca679d17f577ce7d2e7c74a634c609e253de3a Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Tue, 18 Jan 2005 14:03:35 +0000 Subject: Reading the user validate function return value, so that reference count is handled properly and password dialog comes up on pressing ok button, in failure cases. svn path=/trunk/; revision=28439 --- plugins/exchange-account-setup/ChangeLog | 5 +++++ plugins/exchange-account-setup/exchange-ask-password.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'plugins/exchange-account-setup') diff --git a/plugins/exchange-account-setup/ChangeLog b/plugins/exchange-account-setup/ChangeLog index 1015f5140c..5d64bf49dc 100644 --- a/plugins/exchange-account-setup/ChangeLog +++ b/plugins/exchange-account-setup/ChangeLog @@ -1,3 +1,8 @@ +2005-01-18 Sushma Rai + + * exchange-ask-password.c (validate_exchange_user): Reading the return + value of user validation function. Fixes #71385 + 2005-01-18 Sushma Rai * exchange-ask-password.c (validate_exchange_user): Filling up diff --git a/plugins/exchange-account-setup/exchange-ask-password.c b/plugins/exchange-account-setup/exchange-ask-password.c index 212d2a89a6..46fe489258 100644 --- a/plugins/exchange-account-setup/exchange-ask-password.c +++ b/plugins/exchange-account-setup/exchange-ask-password.c @@ -70,7 +70,7 @@ validate_exchange_user (void *data) CamelProviderValidate *validate; CamelURL *url=NULL; CamelProvider *provider = NULL; - gboolean valid = TRUE; + gboolean valid = FALSE; char *account_url, *url_string; const char *source_url; static int count = 0; @@ -105,10 +105,9 @@ validate_exchange_user (void *data) } } - validate->validate_user (url, owa_entry_text, NULL); + valid = validate->validate_user (url, owa_entry_text, NULL); } - else - valid = FALSE; + /* FIXME: need to check for return value */ if (valid) { count ++; @@ -118,6 +117,7 @@ validate_exchange_user (void *data) e_account_set_string (target_account->account, E_ACCOUNT_TRANSPORT_URL, url_string); } + camel_url_free (url); g_free (account_url); return valid; -- cgit v1.2.3