1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-06 23:52:38 -05:00

log/Log.cpp: va_list 'args' was opened but not closed by va_end()

This commit is contained in:
chinarulezzz
2018-04-17 23:12:19 +03:00
parent 1c2b5acb2c
commit 0814c28998

View File

@@ -47,6 +47,8 @@ void Log::message(Log::Level level, const char* fmt, ...)
backend->message(level, fmt, copy);
va_end(copy);
}
va_end(args);
}