mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Ensure DNSResolver destructor runs on exit
Plugs a noisy but benign memory leak
This commit is contained in:
parent
0c6ea4f8a6
commit
464afd4d2d
1 changed files with 2 additions and 6 deletions
|
@ -307,12 +307,8 @@ DNSResolver& DNSResolver::instance()
|
|||
{
|
||||
boost::lock_guard<boost::mutex> lock(instance_lock);
|
||||
|
||||
static DNSResolver* staticInstance = NULL;
|
||||
if (staticInstance == NULL)
|
||||
{
|
||||
staticInstance = new DNSResolver();
|
||||
}
|
||||
return *staticInstance;
|
||||
static DNSResolver staticInstance;
|
||||
return staticInstance;
|
||||
}
|
||||
|
||||
DNSResolver DNSResolver::create()
|
||||
|
|
Loading…
Reference in a new issue