Checking for the NULL URI, Fixes #328282.
svn path=/trunk/; revision=31281
This commit is contained in:
@ -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
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user