mirror of https://gitee.com/bigwinds/arangodb
Fixed n assignment where it should be an comparison
This commit is contained in:
parent
6ff12b98db
commit
7e086c901c
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue