mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
ITS#8237 fix ITS#7589 regression
This commit is contained in:
parent
7f151b1137
commit
d84fae3fe3
@ -8167,7 +8167,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;
|
||||
|
Loading…
Reference in New Issue
Block a user