diff options
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; } |