]> git.sur5r.net Git - openldap/blobdiff - libraries/liblmdb/mdb.c
Fix prev commit, cursor depth comparison
[openldap] / libraries / liblmdb / mdb.c
index 9ade333ed951e459ce623b1c1ca0b29169494cf9..7a8ca3fde60a35eed55bf31e35f15a12c27678e3 100644 (file)
@@ -7291,7 +7291,7 @@ mdb_cursor_del0(MDB_cursor *mc, MDB_node *leaf)
 
                /* Adjust other cursors pointing to mp */
                for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
-                       if (m2 == mc)
+                       if (m2 == mc || m2->mc_snum < mc->mc_snum)
                                continue;
                        if (!(m2->mc_flags & C_INITIALIZED))
                                continue;
@@ -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;
@@ -7562,18 +7562,11 @@ mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno
                                                }
                                                psize += psize & 1;
                                        }
-                                       if (psize > pmax) {
+                                       if (psize > pmax || i == k-j) {
                                                split_indx = i + (j<0);
                                                break;
                                        }
                                }
-                               /* special case: when the new node was on the last
-                                * slot we may not have tripped the break inside the loop.
-                                * In all other cases we either hit the break condition,
-                                * or the original split_indx was already safe.
-                                */
-                               if (newindx >= nkeys && i == k)
-                                       split_indx = nkeys-1;
                        }
                        if (split_indx == newindx) {
                                sepkey.mv_size = newkey->mv_size;