diff options
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-operations.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 475f37f6af..5b608f3978 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,5 +1,11 @@ 2006-01-23 Sushma Rai <rsushma@novell.com> + * exchange-operations.c + (exchange_operations_cta_select_node_from_tree): Checking for the NULL + URI, Fixes #328282. + +2006-01-23 Sushma Rai <rsushma@novell.com> + * exchange-account-setup.c (camel_exchange_ntlm): Setting the authproto value to NTLM, which is used later. (org_gnome_exchange_auth_section): Reading the auth type from diff --git a/plugins/exchange-operations/exchange-operations.c b/plugins/exchange-operations/exchange-operations.c index b804c47102..8407024904 100644 --- a/plugins/exchange-operations/exchange-operations.c +++ b/plugins/exchange-operations/exchange-operations.c @@ -148,8 +148,10 @@ exchange_operations_cta_select_node_from_tree (GtkTreeStore *store, GtkTreeIter GtkTreeIter iter; gboolean status; - exchange_operations_tokenize_string (&luri, nodename, '/'); + if (!luri) + return; + exchange_operations_tokenize_string (&luri, nodename, '/'); if (!nodename[0]) { return; } |