ITS#8412 fix NEXT_DUP after cursor_del

This commit is contained in:
Howard Chu 2016-04-26 12:52:21 +01:00
parent b46fc3e438
commit dda2ac0a1b

View File

@ -5641,7 +5641,8 @@ mdb_cursor_next(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
MDB_node *leaf;
int rc;
if (mc->mc_flags & C_EOF) {
if ((mc->mc_flags & C_EOF) ||
((mc->mc_flags & C_DEL) && op == MDB_NEXT_DUP)) {
return MDB_NOTFOUND;
}
if (!(mc->mc_flags & C_INITIALIZED))