mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 18:15:40 +01:00
Merge pull request #3815 from AndrzejKurek/cipher-optim-mem-fix
ssl_tls.c: Fix unchecked memory allocation
This commit is contained in:
commit
8b0910a791
@ -1728,6 +1728,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