mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 23:35:43 +01:00
Add extra check before integer conversion
end < p should never happen, but just be extra sure
This commit is contained in:
parent
643a922c56
commit
f3e6e4badb
@ -133,7 +133,7 @@ static void ssl_write_renegotiation_ext( ssl_context *ssl,
|
|||||||
|
|
||||||
SSL_DEBUG_MSG( 3, ( "client hello, adding renegotiation extension" ) );
|
SSL_DEBUG_MSG( 3, ( "client hello, adding renegotiation extension" ) );
|
||||||
|
|
||||||
if( (size_t)(end - p) < 5 + ssl->verify_data_len )
|
if( end < p || (size_t)(end - p) < 5 + ssl->verify_data_len )
|
||||||
{
|
{
|
||||||
SSL_DEBUG_MSG( 1, ( "buffer too small" ) );
|
SSL_DEBUG_MSG( 1, ( "buffer too small" ) );
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user