mirror of
https://github.com/monero-project/monero.git
synced 2026-01-14 22:03:25 -08:00
mlocker: fix dtor ordering problem
leak the mutex instead, it's a one off
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user