mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 23:25:44 +01:00
ssl_tls.c: Fix unchecked memory allocation
Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
This commit is contained in:
parent
21afee2304
commit
28b3b29306
@ -1662,6 +1662,11 @@ int ssl_populate_transform( mbedtls_ssl_transform *transform,
|
||||
transform->key_enc = mbedtls_calloc( 1, cipher_info->key_bitlen >> 3 );
|
||||
transform->key_dec = mbedtls_calloc( 1, cipher_info->key_bitlen >> 3 );
|
||||
|
||||
if( transform->key_enc == NULL || transform->key_dec == NULL )
|
||||
{
|
||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "Failed to allocate cipher keys" ) );
|
||||
return( MBEDTLS_ERR_SSL_INTERNAL_ERROR );
|
||||
}
|
||||
memcpy( transform->key_enc, key1, cipher_info->key_bitlen >> 3 );
|
||||
memcpy( transform->key_dec, key2, cipher_info->key_bitlen >> 3 );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user