From: Hallvard Furuseth Date: Sat, 4 Jul 2015 11:48:04 +0000 (+0200) Subject: Simpler mdb_txn_commit(). X-Git-Tag: LMDB_0.9.17~75 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9d6c973f765809cd616972c15c104311075a0998;p=openldap Simpler mdb_txn_commit(). mt_env is always set. Commit(mt_child) resets mt_child, so parent need not. --- diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index 73490db591..80a6eb977f 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -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; }