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);
}