aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2006-01-23 23:20:49 +0800
committerSushma Rai <rsushma@src.gnome.org>2006-01-23 23:20:49 +0800
commitaa350edea07796e9c60bf10b2cf6a05fa449dab3 (patch)
tree5bdfc535dd42148c6b082839d3a5f02908f07dde /plugins/exchange-operations
parent1f98aa7921b56548d2249461595a37832df14735 (diff)
downloadgsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar
gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.gz
gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.bz2
gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.lz
gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.xz
gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.zst
gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.zip
Checking for the NULL URI, Fixes #328282.
svn path=/trunk/; revision=31281
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r--plugins/exchange-operations/ChangeLog6
-rw-r--r--plugins/exchange-operations/exchange-operations.c4
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;
}