Adds additional casts to calloc calls

Casts added to allow compilation of the library as C++
This commit is contained in:
Simon Butcher 2016-05-20 00:19:09 +01:00
parent 88ffc089bc
commit 29176897a1
3 changed files with 7 additions and 4 deletions

View file

@ -269,7 +269,8 @@ int mbedtls_asn1_get_sequence_of( unsigned char **p,
/* Allocate and assign next pointer */
if( *p < end )
{
cur->next = mbedtls_calloc( 1, sizeof( mbedtls_asn1_sequence ) );
cur->next = (mbedtls_asn1_sequence*)mbedtls_calloc( 1,
sizeof( mbedtls_asn1_sequence ) );
if( cur->next == NULL )
return( MBEDTLS_ERR_ASN1_ALLOC_FAILED );