Merge remote-tracking branch 'public/pr/1582' into mbedtls-2.1

This commit is contained in:
Simon Butcher 2018-05-23 17:53:23 +01:00
commit e64bf3968e
2 changed files with 3 additions and 0 deletions

View file

@ -70,6 +70,7 @@ Changes
* Improve robustness of mbedtls_ssl_derive_keys against the use of
HMAC functions with non-HMAC ciphersuites. Independently contributed
by Jiayuan Chen in #1377. Fixes #1437.
* Fix braces in mbedtls_memory_buffer_alloc_status(). Found by sbranden, #552.
= mbed TLS 2.1.11 branch released 2018-03-16

View file

@ -522,7 +522,9 @@ void mbedtls_memory_buffer_alloc_status()
heap.alloc_count, heap.free_count );
if( heap.first->next == NULL )
{
mbedtls_fprintf( stderr, "All memory de-allocated in stack buffer\n" );
}
else
{
mbedtls_fprintf( stderr, "Memory currently allocated:\n" );