]> git.sur5r.net Git - openldap/commitdiff
Simpler mdb_txn_commit().
authorHallvard Furuseth <hallvard@openldap.org>
Sat, 4 Jul 2015 11:48:04 +0000 (13:48 +0200)
committerHallvard Furuseth <hallvard@openldap.org>
Sun, 25 Oct 2015 09:55:22 +0000 (10:55 +0100)
mt_env is always set.
Commit(mt_child) resets mt_child, so parent need not.

libraries/liblmdb/mdb.c

index 73490db591cd96ca8f0f1d38deb4fcc2b18970f6..80a6eb977f0d47c9059f3ac13c5907c59264330c 100644 (file)
@@ -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;
        }