mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 03:29:35 -05:00
ITS#7589 another mdb_page_split fix
Tweak split_indx check, go one slot further.
This commit is contained in:
parent
e31983c723
commit
34459e0585
1 changed files with 1 additions and 1 deletions
|
|
@ -7542,7 +7542,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+1;
|
||||
k = newindx >= nkeys ? nkeys : split_indx+2;
|
||||
} else {
|
||||
i = nkeys; j = -1;
|
||||
k = split_indx-1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue