Checking for the NULL URI, Fixes #328282.

svn path=/trunk/; revision=31281
This commit is contained in:
Sushma Rai
2006-01-23 15:20:49 +00:00
parent 1f98aa7921
commit aa350edea0
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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

View File

@ -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;
}