Merge pull request #4883
40485a73
mlocker: fix access to global lock map after dtor on exit (moneromooo-monero)
This commit is contained in:
commit
16dc6900fb
|
@ -98,8 +98,8 @@ namespace epee
|
|||
}
|
||||
std::map<size_t, unsigned int> &mlocker::map()
|
||||
{
|
||||
static std::map<size_t, unsigned int> vmap;
|
||||
return vmap;
|
||||
static std::map<size_t, unsigned int> *vmap = new std::map<size_t, unsigned int>();
|
||||
return *vmap;
|
||||
}
|
||||
|
||||
size_t mlocker::get_page_size()
|
||||
|
|
Loading…
Reference in New Issue