mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
mlocker: fix access to global lock map after dtor on exit
as the lock, it now leaks
This commit is contained in:
parent
84dd674cd0
commit
40485a73b6
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ namespace epee
|
||||||
}
|
}
|
||||||
std::map<size_t, unsigned int> &mlocker::map()
|
std::map<size_t, unsigned int> &mlocker::map()
|
||||||
{
|
{
|
||||||
static std::map<size_t, unsigned int> vmap;
|
static std::map<size_t, unsigned int> *vmap = new std::map<size_t, unsigned int>();
|
||||||
return vmap;
|
return *vmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t mlocker::get_page_size()
|
size_t mlocker::get_page_size()
|
||||||
|
|
Loading…
Reference in a new issue