Reintroduce length 0 check for records

This commit is contained in:
Hanno Becker 2019-07-26 08:20:27 +01:00 committed by Manuel Pégourié-Gonnard
parent 8061c6e894
commit ec01408389

View File

@ -4946,6 +4946,9 @@ static int ssl_parse_record_header( mbedtls_ssl_context const *ssl,
rec->buf = buf;
rec->buf_len = rec->data_offset + rec->data_len;
if( rec->data_len == 0 )
return( MBEDTLS_ERR_SSL_INVALID_RECORD );
/*
* DTLS-related tests.
* Check epoch before checking length constraint because