From: Bodo Möller Date: Wed, 29 Nov 2000 16:43:03 +0000 (+0000) Subject: add missing braces X-Git-Tag: OpenSSL_0_9_6a-beta1~107^2~117 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=429b8162c6e9eff46ce924badad75c8cda0a69b7;p=oweals%2Fopenssl.git add missing braces --- diff --git a/crypto/bn/bn_gcd.c b/crypto/bn/bn_gcd.c index d361ada8b2..a61ba5ee11 100644 --- a/crypto/bn/bn_gcd.c +++ b/crypto/bn/bn_gcd.c @@ -379,9 +379,13 @@ BIGNUM *BN_mod_inverse(BIGNUM *in, { /* Y*a == 1 (mod |n|) */ if (BN_ucmp(Y,n) < 0) + { if (!BN_copy(R,Y)) goto err; + } else + { if (!BN_nnmod(R,Y,n,ctx)) goto err; + } } else { @@ -394,4 +398,3 @@ err: BN_CTX_end(ctx); return(ret); } -