From 5daf811dcbd0ff80daa941742b05ce7a83715592 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Wed, 8 Apr 2015 21:47:24 +0200 Subject: [PATCH] lmdb: Clear error from previous txn in mdb_txn_renew(). Change-Id: I72b55bfd91c87e4608fbf50f3c70951952855f8f --- mdb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mdb.c b/mdb.c index 45270d47..cc3f343a 100644 --- a/mdb.c +++ b/mdb.c @@ -2953,6 +2953,7 @@ mdb_txn_renew0(MDB_txn *txn) int rc, new_notls = 0; if (txn->mt_flags & MDB_TXN_RDONLY) { + txn->mt_flags = MDB_TXN_RDONLY; /* Setup db info */ txn->mt_numdbs = env->me_numdbs; txn->mt_dbxs = env->me_dbxs; /* mostly static anyway */