Skip to content

Commit

Permalink
Reset session_in/out pointers in ssl_session_reset_int()
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanno Becker committed Aug 13, 2018
1 parent d8f4169 commit 7864090
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions library/ssl_tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -5973,6 +5973,9 @@ static int ssl_session_reset_int( mbedtls_ssl_context *ssl, int partial )
ssl->transform_in = NULL;
ssl->transform_out = NULL;

ssl->session_in = NULL;
ssl->session_out = NULL;

memset( ssl->out_buf, 0, MBEDTLS_SSL_OUT_BUFFER_LEN );
if( partial == 0 )
memset( ssl->in_buf, 0, MBEDTLS_SSL_IN_BUFFER_LEN );
Expand Down Expand Up @@ -6842,14 +6845,14 @@ int mbedtls_ssl_get_record_expansion( const mbedtls_ssl_context *ssl )
size_t transform_expansion;
const mbedtls_ssl_transform *transform = ssl->transform_out;

if( transform == NULL )
return( (int) mbedtls_ssl_hdr_len( ssl ) );

#if defined(MBEDTLS_ZLIB_SUPPORT)
if( ssl->session_out->compression != MBEDTLS_SSL_COMPRESS_NULL )
return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
#endif

if( transform == NULL )
return( (int) mbedtls_ssl_hdr_len( ssl ) );

switch( mbedtls_cipher_get_cipher_mode( &transform->cipher_ctx_enc ) )
{
case MBEDTLS_MODE_GCM:
Expand Down

0 comments on commit 7864090

Please sign in to comment.