mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-01 12:38:16 +00:00
Merge remote-tracking branch 'public/pr/1581' into mbedtls-2.7
This commit is contained in:
commit
47212c8e2c
|
@ -7,6 +7,7 @@ Bugfix
|
||||||
TrinityTonic. #1359.
|
TrinityTonic. #1359.
|
||||||
* Fix for redefinition of _WIN32_WINNT to avoid overriding a definition
|
* Fix for redefinition of _WIN32_WINNT to avoid overriding a definition
|
||||||
used by user applications. Found and fixed by Fabio Alessandrelli.
|
used by user applications. Found and fixed by Fabio Alessandrelli.
|
||||||
|
* Fix braces in mbedtls_memory_buffer_alloc_status(). Found by sbranden, #552.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Support TLS testing in out-of-source builds using cmake. Fixes #1193.
|
* Support TLS testing in out-of-source builds using cmake. Fixes #1193.
|
||||||
|
|
|
@ -522,7 +522,9 @@ void mbedtls_memory_buffer_alloc_status()
|
||||||
heap.alloc_count, heap.free_count );
|
heap.alloc_count, heap.free_count );
|
||||||
|
|
||||||
if( heap.first->next == NULL )
|
if( heap.first->next == NULL )
|
||||||
|
{
|
||||||
mbedtls_fprintf( stderr, "All memory de-allocated in stack buffer\n" );
|
mbedtls_fprintf( stderr, "All memory de-allocated in stack buffer\n" );
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
mbedtls_fprintf( stderr, "Memory currently allocated:\n" );
|
mbedtls_fprintf( stderr, "Memory currently allocated:\n" );
|
||||||
|
|
Loading…
Reference in a new issue