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
commit ad9956d987
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 1 deletions

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) {