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 /plugins/exchange-operations/exchange-operations.c | |
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
Diffstat (limited to 'plugins/exchange-operations/exchange-operations.c')
-rw-r--r-- | plugins/exchange-operations/exchange-operations.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; } |