mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-31 14:50:34 +08:00
Simpler mdb_txn_commit().
mt_env is always set. Commit(mt_child) resets mt_child, so parent need not.
This commit is contained in:
parent
ee06adb311
commit
9d6c973f76
@ -3287,12 +3287,11 @@ mdb_txn_commit(MDB_txn *txn)
|
||||
unsigned int i;
|
||||
MDB_env *env;
|
||||
|
||||
if (txn == NULL || txn->mt_env == NULL)
|
||||
if (txn == NULL)
|
||||
return EINVAL;
|
||||
|
||||
if (txn->mt_child) {
|
||||
rc = mdb_txn_commit(txn->mt_child);
|
||||
txn->mt_child = NULL;
|
||||
if (rc)
|
||||
goto fail;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user