Fix compile error in memory_buffer_alloc_selftest

This commit is contained in:
Manuel Pégourié-Gonnard 2015-02-05 12:08:47 +01:00
parent 7defc7759d
commit 491a3fe057

View File

@ -611,7 +611,10 @@ static int check_pointer( void *p )
static int check_all_free( )
{
if( heap.current_alloc_size != 0 ||
if(
#if defined(POLARSSL_MEMORY_DEBUG)
heap.total_used != 0 ||
#endif
heap.first != heap.first_free ||
(void *) heap.first != (void *) heap.buf )
{