mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 11:15:43 -04:00
CPU: Prevent mismatched va_start/va_end in log
This commit is contained in:
parent
541947c6f8
commit
46737acecd
@ -67,9 +67,6 @@ void StopTrace()
|
|||||||
|
|
||||||
void WriteToExecutionLog(const char* format, ...)
|
void WriteToExecutionLog(const char* format, ...)
|
||||||
{
|
{
|
||||||
std::va_list ap;
|
|
||||||
va_start(ap, format);
|
|
||||||
|
|
||||||
if (!s_log_file_opened)
|
if (!s_log_file_opened)
|
||||||
{
|
{
|
||||||
s_log_file = FileSystem::OpenCFile("cpu_log.txt", "wb");
|
s_log_file = FileSystem::OpenCFile("cpu_log.txt", "wb");
|
||||||
@ -78,13 +75,15 @@ void WriteToExecutionLog(const char* format, ...)
|
|||||||
|
|
||||||
if (s_log_file)
|
if (s_log_file)
|
||||||
{
|
{
|
||||||
|
std::va_list ap;
|
||||||
|
va_start(ap, format);
|
||||||
std::vfprintf(s_log_file, format, ap);
|
std::vfprintf(s_log_file, format, ap);
|
||||||
|
va_end(ap);
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
std::fflush(s_log_file);
|
std::fflush(s_log_file);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
va_end(ap);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Initialize()
|
void Initialize()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user