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
parent cf27e26beb
commit 5544bb8359

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()
{