Merge pull request #4883

40485a73 mlocker: fix access to global lock map after dtor on exit (moneromooo-monero)
pull/4926/merge
Riccardo Spagni 6 years ago
commit 16dc6900fb
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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…
Cancel
Save