Skip to content
Snippets Groups Projects
Commit aa71bda4 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge branch 'box-bug-sptree_find'

parents 4279a836 ce0caef6
No related branches found
No related tags found
No related merge requests found
......@@ -285,7 +285,11 @@ index_find_tree(struct index *self, void *key)
{
struct tree_index_member *member = (struct tree_index_member *)key;
return sptree_str_t_find(self->idx.tree, member);
member = sptree_str_t_find(self->idx.tree, member);
if (member != NULL)
return member->tuple;
return NULL;
}
static struct box_tuple *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment