mdb_cursor_sibling() no longer pops cursor before returning.
vmware
Howard Chu 12 years ago
parent 5af47adf6b
commit e545b742e5
  1. 4
      libraries/liblmdb/mdb.c

@ -6971,9 +6971,9 @@ mdb_drop0(MDB_cursor *mc, int subs)
rc = mdb_cursor_sibling(mc, 1);
if (rc) {
/* no more siblings, go back to beginning
* of previous level. (stack was already popped
* by mdb_cursor_sibling)
* of previous level.
*/
mdb_cursor_pop(mc);
for (i=1; i<mc->mc_top; i++)
mc->mc_pg[i] = mx.mc_pg[i];
}

Loading…
Cancel
Save