[crypto,tls] add check for overflow
This commit is contained in:
parent
a84b303c23
commit
74b596758c
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user