- replaced all usages of insecure vsprintf() function

This commit is contained in:
alexey.lysiuk 2019-03-04 17:35:38 +02:00
parent 6327734659
commit a3554bda70
4 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@ void I_Error (const char *error, ...)
va_start(argptr, error);
vsprintf (errortext, error, argptr);
myvsnprintf (errortext, MAX_ERRORTEXT, error, argptr);
va_end (argptr);
throw CRecoverableError(errortext);
}

View File

@ -229,7 +229,7 @@ void I_Error (const char *error, ...)
va_start(argptr, error);
vsprintf (errortext, error, argptr);
myvsnprintf (errortext, MAX_ERRORTEXT, error, argptr);
va_end (argptr);
throw CRecoverableError(errortext);
}

View File

@ -828,7 +828,7 @@ void cmsg(int type, int verbosity_level, const char *fmt, ...)
char buf[1024];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
myvsnprintf(buf, sizeof buf, fmt, args);
va_end(args);
I_DebugPrint(buf);
#endif

View File

@ -433,7 +433,7 @@ void Writef (HANDLE file, const char *format, ...)
DWORD len;
va_start (args, format);
len = vsprintf (buffer, format, args);
len = myvsnprintf (buffer, sizeof buffer, format, args);
va_end (args);
WriteFile (file, buffer, len, &len, NULL);
}