summaryrefslogtreecommitdiffstats
path: root/test/exptest.c
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2022-12-16 19:30:29 +0100
committerBernd Edlinger <bernd.edlinger@hotmail.de>2022-12-21 16:32:53 +0100
commit92d86b387eadf3ab51b2e996cb8f8cb4ed3e03b7 (patch)
tree04d0deecac56e3c134579e49386edf696ac1dc1e /test/exptest.c
parentcb6bd940310b865493f2387ee5e5818769058c21 (diff)
Fix a logic flaw in test_mod_exp_zero
Due to the logic flaw, possible test failures in this test case might be ignored. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19929) (cherry picked from commit 42061268ee8f9ae0555d522870740fc91b744f4f)
Diffstat (limited to 'test/exptest.c')
-rw-r--r--test/exptest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/exptest.c b/test/exptest.c
index f0d8693130..1937a12c1c 100644
--- a/test/exptest.c
+++ b/test/exptest.c
@@ -49,7 +49,7 @@ static int test_mod_exp_zero(void)
BIGNUM *r = NULL;
BN_ULONG one_word = 1;
BN_CTX *ctx = BN_CTX_new();
- int ret = 1, failed = 0;
+ int ret = 0, failed = 0;
BN_MONT_CTX *mont = NULL;
if (!TEST_ptr(m = BN_new())