mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Merge remote-tracking branch 'origin/mdb.RE/0.9'
This commit is contained in:
commit
b2a9cbc6eb
2 changed files with 4 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ LMDB 0.9.17 Release Engineering
|
|||
Fix ITS#8264 cursor_del cursor tracking
|
||||
Fix ITS#8299 mdb_del cursor tracking
|
||||
Fix ITS#8300 mdb_del cursor tracking
|
||||
Fix ITS#8304 mdb_del cursor tracking
|
||||
Fix ITS#7771 fakepage cursor tracking
|
||||
Fix ITS#7789 ensure mapsize >= pages in use
|
||||
Fix ITS#7971 mdb_txn_renew0() new reader slots
|
||||
|
|
|
|||
|
|
@ -7733,6 +7733,9 @@ mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
|
|||
if ((rc = mdb_page_touch(cdst)))
|
||||
return rc;
|
||||
|
||||
/* get dst page again now that we've touched it. */
|
||||
pdst = cdst->mc_pg[cdst->mc_top];
|
||||
|
||||
/* Move all nodes from src to dst.
|
||||
*/
|
||||
j = nkeys = NUMKEYS(pdst);
|
||||
|
|
|
|||
Loading…
Reference in a new issue