mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-09 00:14:25 -05:00
Simplify recent changes a bit.
This commit is contained in:
parent
9a72292ac1
commit
42110d83a9
1 changed files with 3 additions and 3 deletions
|
|
@ -2820,11 +2820,8 @@ mdb_txn_reset0(MDB_txn *txn, const char *act)
|
|||
txn->mt_dbxs = NULL; /* mark txn as reset */
|
||||
} else {
|
||||
pgno_t *pghead = env->me_pghead;
|
||||
env->me_pghead = NULL;
|
||||
env->me_pglast = 0;
|
||||
|
||||
mdb_cursors_close(txn, 0);
|
||||
|
||||
if (!(env->me_flags & MDB_WRITEMAP)) {
|
||||
mdb_dlist_free(txn);
|
||||
}
|
||||
|
|
@ -2832,6 +2829,9 @@ mdb_txn_reset0(MDB_txn *txn, const char *act)
|
|||
if (!txn->mt_parent) {
|
||||
if (mdb_midl_shrink(&txn->mt_free_pgs))
|
||||
env->me_free_pgs = txn->mt_free_pgs;
|
||||
/* me_pgstate: */
|
||||
env->me_pghead = NULL;
|
||||
env->me_pglast = 0;
|
||||
|
||||
env->me_txn = NULL;
|
||||
/* The writer mutex was locked in mdb_txn_begin. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue