1
0
Fork 0

Fix an infinite loop.

This commit is contained in:
Max Neunhoeffer 2016-03-08 17:45:00 +01:00
parent 4351089a48
commit 79b90f2e9d
1 changed files with 1 additions and 1 deletions

View File

@ -4131,8 +4131,8 @@ VPackBuilder TRI_document_collection_t::mergeObjectsForUpdate(
key != TRI_VOC_ATTRIBUTE_ID &&
key != TRI_VOC_ATTRIBUTE_REV) {
newValues.emplace(it.key().copyString(), it.value());
it.next();
}
it.next();
}
}