diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2006-01-23 23:20:49 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2006-01-23 23:20:49 +0800 |
commit | aa350edea07796e9c60bf10b2cf6a05fa449dab3 (patch) | |
tree | 5bdfc535dd42148c6b082839d3a5f02908f07dde | |
parent | 1f98aa7921b56548d2249461595a37832df14735 (diff) | |
download | gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.gz gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.tar.zst gsoc2013-evolution-aa350edea07796e9c60bf10b2cf6a05fa449dab3.zip |
Checking for the NULL URI, Fixes #328282.
svn path=/trunk/; revision=31281
-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; } |