summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_record_tx.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/quic/quic_record_tx.c')
-rw-r--r--ssl/quic/quic_record_tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_record_tx.c b/ssl/quic/quic_record_tx.c
index 4f86c68e17..c01abed0d6 100644
--- a/ssl/quic/quic_record_tx.c
+++ b/ssl/quic/quic_record_tx.c
@@ -422,7 +422,7 @@ int ossl_qtx_calculate_plaintext_payload_len(OSSL_QTX *qtx, uint32_t enc_level,
tag_len = ossl_qrl_get_suite_cipher_tag_len(el->suite_id);
- if (ciphertext_len < tag_len) {
+ if (ciphertext_len <= tag_len) {
*plaintext_len = 0;
return 0;
}