Move compress_buf allocation to derive_keys
This commit is contained in:
parent
040a9517b5
commit
d73b47fe2e
1 changed files with 17 additions and 15 deletions
|
@ -1460,24 +1460,10 @@ static int ssl_populate_transform( mbedtls_ssl_context *ssl )
|
||||||
#endif /* MBEDTLS_CIPHER_MODE_CBC */
|
#endif /* MBEDTLS_CIPHER_MODE_CBC */
|
||||||
|
|
||||||
|
|
||||||
|
/* Initialize Zlib contexts */
|
||||||
#if defined(MBEDTLS_ZLIB_SUPPORT)
|
#if defined(MBEDTLS_ZLIB_SUPPORT)
|
||||||
// Initialize compression
|
|
||||||
//
|
|
||||||
if( session->compression == MBEDTLS_SSL_COMPRESS_DEFLATE )
|
if( session->compression == MBEDTLS_SSL_COMPRESS_DEFLATE )
|
||||||
{
|
{
|
||||||
if( ssl->compress_buf == NULL )
|
|
||||||
{
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "Allocating compression buffer" ) );
|
|
||||||
ssl->compress_buf = mbedtls_calloc( 1, MBEDTLS_SSL_COMPRESS_BUFFER_LEN );
|
|
||||||
if( ssl->compress_buf == NULL )
|
|
||||||
{
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "alloc(%d bytes) failed",
|
|
||||||
MBEDTLS_SSL_COMPRESS_BUFFER_LEN ) );
|
|
||||||
ret = MBEDTLS_ERR_SSL_ALLOC_FAILED;
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "Initializing zlib states" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 3, ( "Initializing zlib states" ) );
|
||||||
|
|
||||||
memset( &transform->ctx_deflate, 0, sizeof( transform->ctx_deflate ) );
|
memset( &transform->ctx_deflate, 0, sizeof( transform->ctx_deflate ) );
|
||||||
|
@ -1757,6 +1743,22 @@ int mbedtls_ssl_derive_keys( mbedtls_ssl_context *ssl )
|
||||||
mbedtls_platform_zeroize( ssl->handshake->randbytes,
|
mbedtls_platform_zeroize( ssl->handshake->randbytes,
|
||||||
sizeof( ssl->handshake->randbytes ) );
|
sizeof( ssl->handshake->randbytes ) );
|
||||||
|
|
||||||
|
/* Allocate compression buffer */
|
||||||
|
#if defined(MBEDTLS_ZLIB_SUPPORT)
|
||||||
|
if( session->compression == MBEDTLS_SSL_COMPRESS_DEFLATE &&
|
||||||
|
ssl->compress_buf == NULL )
|
||||||
|
{
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG( 3, ( "Allocating compression buffer" ) );
|
||||||
|
ssl->compress_buf = mbedtls_calloc( 1, MBEDTLS_SSL_COMPRESS_BUFFER_LEN );
|
||||||
|
if( ssl->compress_buf == NULL )
|
||||||
|
{
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG( 1, ( "alloc(%d bytes) failed",
|
||||||
|
MBEDTLS_SSL_COMPRESS_BUFFER_LEN ) );
|
||||||
|
return( MBEDTLS_ERR_SSL_ALLOC_FAILED );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 2, ( "<= derive keys" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 2, ( "<= derive keys" ) );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
|
Loading…
Reference in a new issue