mlocker: fix dtor ordering problem

leak the mutex instead, it's a one off
This commit is contained in:
moneromooo-monero 2018-11-02 12:59:06 +00:00 committed by wowario
parent 93c2e6f521
commit b91d510669
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ namespace epee
boost::mutex &mlocker::mutex()
{
static boost::mutex vmutex;
return vmutex;
static boost::mutex *vmutex = new boost::mutex();
return *vmutex;
}
std::map<size_t, unsigned int> &mlocker::map()
{