]> git.sur5r.net Git - openldap/commitdiff
ITS#7377 Fix c0f3d9b9a8864e744a8d1eaffc99bc86026d5351
authorHoward Chu <hyc@symas.com>
Mon, 11 Mar 2013 12:59:07 +0000 (05:59 -0700)
committerHoward Chu <hyc@symas.com>
Mon, 11 Mar 2013 12:59:07 +0000 (05:59 -0700)
Add missing parens

libraries/liblmdb/mdb.c

index c086bd915e724fd8294c1601058a21105c99a892..5eed96f356c52229b16c6febb5bdc2e8bfbc0a44 100644 (file)
@@ -1849,7 +1849,7 @@ mdb_txn_renew(MDB_txn *txn)
 {
        int rc;
 
-       if (! (txn && txn->mt_flags & MDB_TXN_RDONLY))
+       if (! (txn && (txn->mt_flags & MDB_TXN_RDONLY)))
                return EINVAL;
 
        if (txn->mt_env->me_flags & MDB_FATAL_ERROR) {