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 963d247154
commit 0cfd2ae5e7
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 2 deletions

View File

@ -84,8 +84,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()
{