Move debugging output after record decryption
The debugging call printing the decrypted record payload happened
before updating ssl->in_msglen.
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 79e0623..88b39b7 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -4641,13 +4641,14 @@
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" ) );