From: Pauli Date: Sun, 26 Apr 2020 22:57:38 +0000 (+1000) Subject: coverity 1462561 Uninitialized scalar variable X-Git-Tag: openssl-3.0.0-alpha2~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70e18f9dcefdf6c276531159de433f09d4179178;p=thirdparty%2Fopenssl.git coverity 1462561 Uninitialized scalar variable Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/11651) --- diff --git a/crypto/rsa/rsa_gen.c b/crypto/rsa/rsa_gen.c index 3d5a32a0a12..5712aa1791b 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);