1
0
Fork 0

Fixed n assignment where it should be an comparison

This commit is contained in:
Michael Hackstein 2016-02-29 17:07:07 +01:00
parent 6ff12b98db
commit 7e086c901c
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ void IndexIterator::skip(uint64_t count) {
////////////////////////////////////////////////////////////////////////////////
TRI_doc_mptr_t* MultiIndexIterator::next() {
if (_current = nullptr) {
if (_current == nullptr) {
return nullptr;
}
TRI_doc_mptr_t* next = _current->next();