From 79b1a9996c094ff593ae50bc4edc1f349f39dd6d Mon Sep 17 00:00:00 2001 From: Thomas Pornin Date: Wed, 27 Jan 2021 09:34:56 -0500 Subject: [PATCH] Fixed comment. --- src/ssl/ssl_rec_cbc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl/ssl_rec_cbc.c b/src/ssl/ssl_rec_cbc.c index c080604..c38cbfd 100644 --- a/src/ssl/ssl_rec_cbc.c +++ b/src/ssl/ssl_rec_cbc.c @@ -136,7 +136,7 @@ cbc_decrypt(br_sslrec_in_cbc_context *cc, /* * Use the last decrypted byte to compute the actual payload - * length. Take care not to underflow (we use unsigned types). + * length. Take care not to overflow (we use unsigned types). */ pad_len = buf[max_len]; good = LE(pad_len, (uint32_t)(max_len - min_len)); -- 2.17.1