mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-30 06:43:28 +01:00
Merge pull request #7634
5a2edea
db_lmdb: catch exceptions testing for mmap support (moneromooo-monero)
This commit is contained in:
commit
ad9956d987
@ -1354,7 +1354,8 @@ void BlockchainLMDB::open(const std::string& filename, const int db_flags)
|
|||||||
|
|
||||||
m_folder = filename;
|
m_folder = filename;
|
||||||
|
|
||||||
check_mmap_support();
|
try { check_mmap_support(); }
|
||||||
|
catch(...) { MERROR("Failed to check for mmap support, proceeding"); }
|
||||||
|
|
||||||
#ifdef __OpenBSD__
|
#ifdef __OpenBSD__
|
||||||
if ((mdb_flags & MDB_WRITEMAP) == 0) {
|
if ((mdb_flags & MDB_WRITEMAP) == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user