mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	Use snprintf instead of sprintf (#2111)
This commit is contained in:
		@@ -44,7 +44,7 @@ namespace Catch {
 | 
			
		||||
#ifdef _MSC_VER
 | 
			
		||||
        sprintf_s( buffer, "%.3f", duration );
 | 
			
		||||
#else
 | 
			
		||||
        std::sprintf( buffer, "%.3f", duration );
 | 
			
		||||
        std::snprintf( buffer, maxDoubleSize, "%.3f", duration );
 | 
			
		||||
#endif
 | 
			
		||||
        return std::string( buffer );
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user