1
0
Fork 0

Fix bug in edge index.

This commit is contained in:
Max Neunhoeffer 2015-05-18 13:57:32 -07:00
parent 9e588a6ab5
commit e426ca9205
1 changed files with 2 additions and 1 deletions

View File

@ -441,6 +441,7 @@ namespace triagens {
#ifdef TRI_CHECK_MULTI_POINTER_HASH
check(true, true);
#endif
return;
}
// Now find the first slot with an entry with the same key
@ -903,10 +904,10 @@ namespace triagens {
bool check (bool checkCount, bool checkPositions) const {
std::cout << "Performing AssocMulti check " << checkCount
<< checkPositions << std::endl;
bool ok = true;
for (auto& b : _buckets) {
IndexType i, ii, j, k;
bool ok = true;
IndexType count = 0;
for (i = 0;i < b._nrAlloc;i++) {