mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 16:55:43 +01:00
Fix compilation error with Mingw32
Fix compilation error on Mingw32 when `_TRUNCATE` is defined. Use `_TRUNCATE` only if `__MINGW32__` not defined. Fix suggested by Thomas Glanzmann and Nick Wilson on issue #355
This commit is contained in:
parent
72ea31b026
commit
bc18eb3b92
@ -1,5 +1,12 @@
|
|||||||
mbed TLS ChangeLog (Sorted per branch, date)
|
mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
|
|
||||||
|
= mbed TLS x.x.x branch released xxxx-xx-xx
|
||||||
|
|
||||||
|
Bugfix
|
||||||
|
* Fix compilation error on Mingw32 when `_TRUNCATE` is defined. Use `_TRUNCATE`
|
||||||
|
only if `__MINGW32__` not defined. Fix suggested by Thomas Glanzmann and
|
||||||
|
Nick Wilson on issue #355
|
||||||
|
|
||||||
= mbed TLS 2.6.0 branch released 2017-08-10
|
= mbed TLS 2.6.0 branch released 2017-08-10
|
||||||
|
|
||||||
Security
|
Security
|
||||||
|
@ -91,7 +91,7 @@ void mbedtls_debug_print_msg( const mbedtls_ssl_context *ssl, int level,
|
|||||||
|
|
||||||
va_start( argp, format );
|
va_start( argp, format );
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#if defined(_TRUNCATE)
|
#if defined(_TRUNCATE) && !defined(__MINGW32__)
|
||||||
ret = _vsnprintf_s( str, DEBUG_BUF_SIZE, _TRUNCATE, format, argp );
|
ret = _vsnprintf_s( str, DEBUG_BUF_SIZE, _TRUNCATE, format, argp );
|
||||||
#else
|
#else
|
||||||
ret = _vsnprintf( str, DEBUG_BUF_SIZE, format, argp );
|
ret = _vsnprintf( str, DEBUG_BUF_SIZE, format, argp );
|
||||||
|
@ -74,7 +74,7 @@ int mbedtls_platform_win32_snprintf( char *s, size_t n, const char *fmt, ... )
|
|||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
va_start( argp, fmt );
|
va_start( argp, fmt );
|
||||||
#if defined(_TRUNCATE)
|
#if defined(_TRUNCATE) && !defined(__MINGW32__)
|
||||||
ret = _vsnprintf_s( s, n, _TRUNCATE, fmt, argp );
|
ret = _vsnprintf_s( s, n, _TRUNCATE, fmt, argp );
|
||||||
#else
|
#else
|
||||||
ret = _vsnprintf( s, n, fmt, argp );
|
ret = _vsnprintf( s, n, fmt, argp );
|
||||||
|
Loading…
Reference in New Issue
Block a user