replaced vsprintf() with vsnprintf() to avoid buffer overflow exploit

This commit is contained in:
Ed Beroset 2004-12-15 16:45:46 +00:00
parent e0c059ab4e
commit ec2e10cfea

View File

@ -4086,7 +4086,7 @@ error(int severity, const char *fmt, ...)
return;
va_start(arg, fmt);
vsprintf(buff, fmt, arg);
vsnprintf(buff, 1024, fmt, arg);
va_end(arg);
if (istk && istk->mstk && istk->mstk->name)