diff --git a/CHANGELOG.md b/CHANGELOG.md index 63090a267..53e24f855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,11 @@ - Added `--api-no-ipv6` and similar config option to disable IPv6 support for HTTP API. - Added `--api-no-restricted` to enable full access to api, this option has no effect if `--api-access-token` not specified. +# v2.5.3 +- Fixed critical bug, in some cases miner was can't recovery connection and switch to failover pool, version 2.5.2 affected. If you use v2.6.0-beta3 this issue doesn't concern you. +- [#499](https://github.com/xmrig/xmrig/issues/499) IPv6 support disabled for internal HTTP API. +- Added workaround for nicehash.com if you use `cryptonightv7..nicehash.com` option `variant=1` will be set automatically. + # v2.5.2 - [#448](https://github.com/xmrig/xmrig/issues/478) Fixed broken reconnect. diff --git a/src/log/Log.cpp b/src/log/Log.cpp index 131faa54b..0e38634d7 100644 --- a/src/log/Log.cpp +++ b/src/log/Log.cpp @@ -50,6 +50,8 @@ void Log::message(Log::Level level, const char* fmt, ...) va_end(copy); } + va_end(args); + uv_mutex_unlock(&m_mutex); }