Move debugging output after record decryption

The debugging call printing the decrypted record payload happened
before updating ssl->in_msglen.
This commit is contained in:
Hanno Becker 2018-08-07 14:29:29 +01:00 committed by Manuel Pégourié-Gonnard
parent d300003b2c
commit a795323cd5

View File

@ -4340,13 +4340,14 @@ static int ssl_prepare_record_content( mbedtls_ssl_context *ssl )
return( ret );
}
MBEDTLS_SSL_DEBUG_BUF( 4, "input payload after decrypt",
ssl->in_msg, ssl->in_msglen );
ssl->in_msglen = rec.data_len;
ssl->in_len[0] = (unsigned char)( rec.data_len >> 8 );
ssl->in_len[1] = (unsigned char)( rec.data_len );
MBEDTLS_SSL_DEBUG_BUF( 4, "input payload after decrypt",
ssl->in_msg, ssl->in_msglen );
if( ssl->in_msglen > MBEDTLS_SSL_IN_CONTENT_LEN )
{
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad message length" ) );