[crypto,tls] fix missing return

This commit is contained in:
akallabeth 2024-05-25 07:34:15 +02:00
parent 6228583ee6
commit 53d8e0f203
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5

View File

@ -902,6 +902,7 @@ static int bio_err_print(const char* str, size_t len, void* u)
{
wLog* log = u;
WLog_Print(log, WLOG_ERROR, "[BIO_do_handshake] %s [%" PRIuz "]", str, len);
return 0;
}
TlsHandshakeResult freerdp_tls_handshake(rdpTls* tls)