lmdb: ITS#8190 fix cursor EOF bug.

Change-Id: I97556bc521e1d4d4ea9f3e43c14a8a2fe62b8231
This commit is contained in:
Howard Chu 2015-07-07 13:41:32 +01:00 committed by Leo Yuriev
parent 96fb8eec8a
commit 91a6b6de57

4
mdb.c
View File

@ -5754,8 +5754,10 @@ set2:
if (leaf == NULL) {
mdb_debug("===> inexact leaf not found, goto sibling");
if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS)
if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS) {
mc->mc_flags |= C_EOF;
return rc; /* no entries matched */
}
mp = mc->mc_pg[mc->mc_top];
mdb_cassert(mc, IS_LEAF(mp));
leaf = NODEPTR(mp, 0);