mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
Merge remote-tracking branch 'origin/mdb.RE/0.9'
This commit is contained in:
commit
a2be9ff491
2 changed files with 2 additions and 1 deletions
|
|
@ -3,6 +3,7 @@ LMDB 0.9 Change Log
|
|||
LMDB 0.9.25 Engineering
|
||||
ITS#9068 fix mdb_dump/load backslashes in printable content
|
||||
ITS#9118 add MAP_NOSYNC for FreeBSD
|
||||
ITS#9155 free mt_spill_pgs in non-nested txn on end
|
||||
|
||||
LMDB 0.9.24 Release (2019/07/24)
|
||||
ITS#8969 Tweak mdb_page_split
|
||||
|
|
|
|||
|
|
@ -3027,9 +3027,9 @@ mdb_txn_end(MDB_txn *txn, unsigned mode)
|
|||
txn->mt_parent->mt_flags &= ~MDB_TXN_HAS_CHILD;
|
||||
env->me_pgstate = ((MDB_ntxn *)txn)->mnt_pgstate;
|
||||
mdb_midl_free(txn->mt_free_pgs);
|
||||
mdb_midl_free(txn->mt_spill_pgs);
|
||||
free(txn->mt_u.dirty_list);
|
||||
}
|
||||
mdb_midl_free(txn->mt_spill_pgs);
|
||||
|
||||
mdb_midl_free(pghead);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue