mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Don't check errno if ktls_read_record() returned 0.
errno is only valid if ktls_read_record() fails with a negative return value. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12111)
This commit is contained in:
parent
0a90a90c46
commit
3c1641e8e8
@ -213,7 +213,7 @@ int ssl3_get_record(SSL *s)
|
||||
num_recs == 0 ? 1 : 0, &n);
|
||||
if (rret <= 0) {
|
||||
#ifndef OPENSSL_NO_KTLS
|
||||
if (!BIO_get_ktls_recv(s->rbio))
|
||||
if (!BIO_get_ktls_recv(s->rbio) || rret == 0)
|
||||
return rret; /* error or non-blocking */
|
||||
switch (errno) {
|
||||
case EBADMSG:
|
||||
|
Loading…
x
Reference in New Issue
Block a user