Merge pull request #1754 from taosdata/hotfix/fix-hash-entry-assertion-issue
fix double-fix on hash entry++.
This commit is contained in:
commit
6a043a2bf4
|
@ -520,7 +520,6 @@ SHashMutableIterator *taosHashCreateIter(SHashObj *pHashObj) {
|
|||
|
||||
static SHashNode *getNextHashNode(SHashMutableIterator *pIter) {
|
||||
assert(pIter != NULL);
|
||||
pIter->entryIndex++;
|
||||
|
||||
pIter->entryIndex++;
|
||||
while (pIter->entryIndex < pIter->pHashObj->capacity) {
|
||||
|
|
Loading…
Reference in New Issue