mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#9155 lmdb: free mt_spill_pgs in non-nested txn on end
This commit is contained in:
parent
1cd0da08a7
commit
b485f2869c
1 changed files with 4 additions and 4 deletions
|
|
@ -3570,12 +3570,12 @@ 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);
|
||||
#if OVERFLOW_NOTYET
|
||||
mdb_mid2l_free(txn->mt_dirty_ovs);
|
||||
#endif
|
||||
free(txn->mt_u.dirty_list);
|
||||
}
|
||||
mdb_midl_free(txn->mt_spill_pgs);
|
||||
#if OVERFLOW_NOTYET
|
||||
mdb_mid2l_free(txn->mt_dirty_ovs);
|
||||
#endif
|
||||
|
||||
mdb_midl_free(pghead);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue