Commit 637b13fa authored by Victor Ananjevsky's avatar Victor Ananjevsky

fix proceeding row separator in list dialog

parent 930f0a94
......@@ -1117,7 +1117,7 @@ row_sep_func (GtkTreeModel *m, GtkTreeIter *it, gpointer data)
return FALSE;
gtk_tree_model_get (m, it, options.list_data.sep_column - 1, &name, -1);
return (strcmp (name, options.list_data.sep_value) == 0);
return (name && strcmp (name, options.list_data.sep_value) == 0);
}
static inline void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment