Merge pull request #7634

5a2edea db_lmdb: catch exceptions testing for mmap support (moneromooo-monero)
pull/398/head
luigi1111 3 years ago
commit ad9956d987
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

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

Loading…
Cancel
Save