forked from catchorg/Catch2
Use snprintf instead of sprintf (#2111)
This commit is contained in:
@ -44,7 +44,7 @@ namespace Catch {
|
|||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
sprintf_s( buffer, "%.3f", duration );
|
sprintf_s( buffer, "%.3f", duration );
|
||||||
#else
|
#else
|
||||||
std::sprintf( buffer, "%.3f", duration );
|
std::snprintf( buffer, maxDoubleSize, "%.3f", duration );
|
||||||
#endif
|
#endif
|
||||||
return std::string( buffer );
|
return std::string( buffer );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user