diff options
author | Bodo Möller <bodo@openssl.org> | 2000-11-30 23:58:27 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-11-30 23:58:27 +0100 |
commit | 12cfcc128cbf1a5c6b9806ff39368f0d3c6be138 (patch) | |
tree | 21fd6c7edecd3bcb89b355a033984d47c76bf3d5 /crypto/bn/bn_exp2.c | |
parent | First tentative impementation of Kerberos 5 cryptos and keys for SSL/TLS. Im... (diff) | |
download | openssl-12cfcc128cbf1a5c6b9806ff39368f0d3c6be138.tar.xz openssl-12cfcc128cbf1a5c6b9806ff39368f0d3c6be138.zip |
Fix the recently introduced test that checks if the result is 0
Diffstat (limited to 'crypto/bn/bn_exp2.c')
-rw-r--r-- | crypto/bn/bn_exp2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_exp2.c b/crypto/bn/bn_exp2.c index 4b41dae078..73ccd58a83 100644 --- a/crypto/bn/bn_exp2.c +++ b/crypto/bn/bn_exp2.c @@ -176,7 +176,7 @@ int BN_mod_exp2_mont(BIGNUM *rr, const BIGNUM *a1, const BIGNUM *p1, } else a_mod_m = a1; - if (BN_is_zero(&(val1[0]))) + if (BN_is_zero(a_mod_m)) { ret = BN_zero(rr); goto err; @@ -211,7 +211,7 @@ int BN_mod_exp2_mont(BIGNUM *rr, const BIGNUM *a1, const BIGNUM *p1, } else a_mod_m = a2; - if (BN_is_zero(&(val2[0]))) + if (BN_is_zero(a_mod_m)) { ret = BN_zero(rr); goto err; |