mirror of
https://github.com/cuberite/polarssl.git
synced 2025-10-04 11:09:00 -04:00
tls13: Fix pointer calculation before space check
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
2827106199
commit
c80835943c
@ -1417,8 +1417,8 @@ static int ssl_tls13_parse_encrypted_extensions( mbedtls_ssl_context *ssl,
|
|||||||
p += 2;
|
p += 2;
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_BUF( 3, "encrypted extensions", p, extensions_len );
|
MBEDTLS_SSL_DEBUG_BUF( 3, "encrypted extensions", p, extensions_len );
|
||||||
extensions_end = p + extensions_len;
|
|
||||||
MBEDTLS_SSL_CHK_BUF_READ_PTR( p, end, extensions_len );
|
MBEDTLS_SSL_CHK_BUF_READ_PTR( p, end, extensions_len );
|
||||||
|
extensions_end = p + extensions_len;
|
||||||
|
|
||||||
while( p < extensions_end )
|
while( p < extensions_end )
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user