ITS#8489 reset cursor EOF flag in cursor_set

It usually gets done anyway, but one of the fastpath shortcuts
bypassed this step.
This commit is contained in:
Howard Chu 2016-09-01 00:41:35 +01:00
parent da4443a9b3
commit 45a88275d2

View file

@ -6692,6 +6692,7 @@ mdb_cursor_set(MDB_cursor *mc, MDB_val *key, MDB_val *data,
}
}
rc = 0;
mc->mc_flags &= ~C_EOF;
goto set2;
}
}