Ensure that mbedtls_pk_parse_key() does not allocate 0 bytes
This commit is contained in:
parent
c9d6226d2c
commit
e9124b943d
1 changed files with 3 additions and 0 deletions
|
@ -1274,6 +1274,9 @@ int mbedtls_pk_parse_key( mbedtls_pk_context *pk,
|
||||||
{
|
{
|
||||||
unsigned char *key_copy;
|
unsigned char *key_copy;
|
||||||
|
|
||||||
|
if( keylen == 0 )
|
||||||
|
return( MBEDTLS_ERR_PK_KEY_INVALID_FORMAT );
|
||||||
|
|
||||||
if( ( key_copy = mbedtls_calloc( 1, keylen ) ) == NULL )
|
if( ( key_copy = mbedtls_calloc( 1, keylen ) ) == NULL )
|
||||||
return( MBEDTLS_ERR_PK_ALLOC_FAILED );
|
return( MBEDTLS_ERR_PK_ALLOC_FAILED );
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue