From aa350edea07796e9c60bf10b2cf6a05fa449dab3 Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Mon, 23 Jan 2006 15:20:49 +0000 Subject: Checking for the NULL URI, Fixes #328282. svn path=/trunk/; revision=31281 --- plugins/exchange-operations/ChangeLog | 6 ++++++ plugins/exchange-operations/exchange-operations.c | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'plugins/exchange-operations') 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,3 +1,9 @@ +2006-01-23 Sushma Rai + + * exchange-operations.c + (exchange_operations_cta_select_node_from_tree): Checking for the NULL + URI, Fixes #328282. + 2006-01-23 Sushma Rai * exchange-account-setup.c (camel_exchange_ntlm): Setting the authproto 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; } -- cgit v1.2.3