diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-23 19:51:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-23 19:51:30 +0300 |
commit | 80207f75648fad4294a77ff9ce50f0edaedffeca (patch) | |
tree | 84901161521d83fc1df371f0a7ab1924b61c0b6f /plugins/Dbx_mdbx/src/dbmodulechain.cpp | |
parent | 4a54d1481e37dbac6c055e44abc32e8f72b04a15 (diff) |
dbx_mdbx:
- fix for a name conflict;
- stricter transaction scope;
- version bump
Diffstat (limited to 'plugins/Dbx_mdbx/src/dbmodulechain.cpp')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbmodulechain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_mdbx/src/dbmodulechain.cpp b/plugins/Dbx_mdbx/src/dbmodulechain.cpp index b5f3546309..aa2427348a 100644 --- a/plugins/Dbx_mdbx/src/dbmodulechain.cpp +++ b/plugins/Dbx_mdbx/src/dbmodulechain.cpp @@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. int CDbxMDBX::InitModules()
{
- txn_ptr_ro trnlck(m_txn);
+ txn_ptr_ro trnlck(m_txn_ro);
cursor_ptr_ro cursor(m_curModules);
MDBX_val key, data;
|