lmdb: ITS#8237 fix ITS#7589 regression.

Change-Id: Idd3c95f6e515f0f70c7fd33257c80354a3953f2f
This commit is contained in:
Howard Chu 2015-09-06 19:18:19 +01:00 committed by Leo Yuriev
parent 1b78961cf6
commit 83ba70e3be

2
mdb.c
View File

@ -8313,7 +8313,7 @@ mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno
psize = 0;
if (newindx <= split_indx || newindx >= nkeys) {
i = 0; j = 1;
k = newindx >= nkeys ? nkeys : split_indx+2;
k = newindx >= nkeys ? nkeys : split_indx+1+IS_LEAF(mp);
} else {
i = nkeys; j = -1;
k = split_indx-1;