From: Nils Larsch Date: Thu, 21 Jul 2005 22:40:39 +0000 (+0000) Subject: set correct bn->top value X-Git-Tag: OpenSSL_0_9_8k^2~1913 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=17a2994dbd83929d89ae452f77f4b6b1d073df46;p=oweals%2Fopenssl.git set correct bn->top value --- diff --git a/crypto/bn/bn_mont.c b/crypto/bn/bn_mont.c index 6bcc9ad2e7..82af91f90d 100644 --- a/crypto/bn/bn_mont.c +++ b/crypto/bn/bn_mont.c @@ -292,7 +292,7 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx) buf[0]=mod->d[0]; /* tmod = N mod word size */ buf[1]=0; tmod.d=buf; - tmod.top=1; + tmod.top = buf[0] != 0 ? 1 : 0; tmod.dmax=2; tmod.neg=0; /* Ri = R^-1 mod N*/