Merge pull request #7634

5a2edea db_lmdb: catch exceptions testing for mmap support (moneromooo-monero)
This commit is contained in:
luigi1111
2021-06-24 14:01:42 -05:00

View File

@@ -1354,7 +1354,8 @@ void BlockchainLMDB::open(const std::string& filename, const int db_flags)
m_folder = filename;
check_mmap_support();
try { check_mmap_support(); }
catch(...) { MERROR("Failed to check for mmap support, proceeding"); }
#ifdef __OpenBSD__
if ((mdb_flags & MDB_WRITEMAP) == 0) {