From b9d022d78faee0648c3ace7f15ccec08f14feddb Mon Sep 17 00:00:00 2001 From: Pauli Date: Fri, 18 Jun 2021 14:43:24 +1000 Subject: [PATCH] params: fix range check when converting double to uint64_t. Found in #15815 Reviewed-by: Tomas Mraz Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/15819) --- crypto/params.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/params.c b/crypto/params.c index a1db5dba268..9049041e3bb 100644 --- a/crypto/params.c +++ b/crypto/params.c @@ -1029,7 +1029,7 @@ int OSSL_PARAM_set_double(OSSL_PARAM *p, double val) * 15 bits of UINT64_MAX to avoid using imprecise floating * point values. */ - && (double)(UINT64_MAX - 65535) + 65536.0) { + && val < (double)(UINT64_MAX - 65535) + 65536.0) { p->return_size = sizeof(uint64_t); *(uint64_t *)p->data = (uint64_t)val; return 1; -- 2.47.2