1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

MultiDictionary hotswap fix

This commit is contained in:
Brian Fiete 2024-12-31 07:45:16 -08:00
parent 23d4d35a73
commit 4f0ad540a7
4 changed files with 92 additions and 23 deletions

View file

@ -146,6 +146,8 @@ public:
this->mCurEntry = this->mSet->mEntries[this->mCurEntry].mNext;
}
while ((this->mCurEntry != -1) && (this->mSet->mEntries[this->mCurEntry].mHashCode != wantHash));
if (this->mCurEntry == -1)
this->mCurBucket = mSet->mHashSize;
}
};