Ensure that mbedtls_pk_parse_key() does not allocate 0 bytes

This commit is contained in:
Andres Amaya Garcia 2018-01-23 20:03:52 +00:00
parent c9d6226d2c
commit e9124b943d

View file

@ -1274,6 +1274,9 @@ int mbedtls_pk_parse_key( mbedtls_pk_context *pk,
{
unsigned char *key_copy;
if( keylen == 0 )
return( MBEDTLS_ERR_PK_KEY_INVALID_FORMAT );
if( ( key_copy = mbedtls_calloc( 1, keylen ) ) == NULL )
return( MBEDTLS_ERR_PK_ALLOC_FAILED );