summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmytro Podgornyi <dmytrop@nvidia.com>2022-01-12 19:25:23 +0200
committerPauli <pauli@openssl.org>2022-01-17 13:16:26 +1100
commit63c0fbcf865a711161feccd90aec9bf2e0e49199 (patch)
treeeda699658202b39d73c55ab8d3413faee9eece2e
parenta8779af2f5cb76ac2563c28c1fdbdf314f0a6ebb (diff)
ssl/t1_enc: Fix kTLS RX offload path
During counting of the unprocessed records, return code is treated in a wrong way. This forces kTLS RX path to be skipped in case of presence of unprocessed records. CLA: trivial Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17492) (cherry picked from commit d73a7a3a71270aaadb4e4e678ae9bd3cef8b9cbd)
-rw-r--r--ssl/t1_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index 51688d4f2e..101cba6490 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -122,7 +122,7 @@ static int count_unprocessed_records(SSL *s)
return -1;
/* Read until next record */
- if (PACKET_get_length_prefixed_2(&pkt, &subpkt))
+ if (!PACKET_get_length_prefixed_2(&pkt, &subpkt))
return -1;
count += 1;