[crypto,tls] add check for overflow

This commit is contained in:
Armin Novak 2024-10-23 10:49:54 +02:00
parent a84b303c23
commit 74b596758c
No known key found for this signature in database
GPG Key ID: 2CF4A2D2D3D72105

View File

@ -448,7 +448,8 @@ static long bio_rdp_tls_ctrl(BIO* bio, int cmd, long num, void* ptr)
if (status <= 0)
{
switch (SSL_get_error(tls->ssl, status))
const int err = (status < INT32_MIN) ? INT32_MIN : (int)status;
switch (SSL_get_error(tls->ssl, err))
{
case SSL_ERROR_WANT_READ:
BIO_set_flags(bio, BIO_FLAGS_READ | BIO_FLAGS_SHOULD_RETRY);