Fix infinite loop in CDBTransactionIterator::SkipDeletedAndOverwritten (#2870)

This commit is contained in:
Alexander Block 2019-04-16 15:39:59 +02:00 committed by UdjinM6
parent cd94cbe6f0
commit 2502aadd7c

View File

@ -525,6 +525,7 @@ private:
if (!transaction.deletes.count(parentKey) && !transaction.writes.count(parentKey)) { if (!transaction.deletes.count(parentKey) && !transaction.writes.count(parentKey)) {
break; break;
} }
parentIt->Next();
} }
} }