From 70e18f9dcefdf6c276531159de433f09d4179178 Mon Sep 17 00:00:00 2001 From: Pauli Date: Mon, 27 Apr 2020 08:57:38 +1000 Subject: [PATCH] coverity 1462561 Uninitialized scalar variable Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/11651) --- crypto/rsa/rsa_gen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/rsa/rsa_gen.c b/crypto/rsa/rsa_gen.c index 3d5a32a0a1..5712aa1791 100644 --- a/crypto/rsa/rsa_gen.c +++ b/crypto/rsa/rsa_gen.c @@ -463,7 +463,7 @@ static int rsa_keygen_pairwise_test(RSA *rsa, OSSL_CALLBACK *cb, void *cbarg) if (ciphertxt_len <= 0) goto err; if (ciphertxt_len == plaintxt_len - && memcmp(decoded, plaintxt, plaintxt_len) == 0) + && memcmp(ciphertxt, plaintxt, plaintxt_len) == 0) goto err; OSSL_SELF_TEST_oncorrupt_byte(st, ciphertxt); -- 2.25.1