This results in spurious errors appearing on the queue in normal
operation, e.g. calling SSL_tick() with a QUIC connection will succeed,
but an error will end up on the queue anyway.
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20030)
m->local, m->peer, 1);
if (l < 0) {
*num_processed = i;
- if (i > 0) {
+ if (i > 0)
ret = 1;
- } else {
- ERR_raise(ERR_LIB_BIO, -l);
+ else
ret = 0;
- }
goto out;
}