summaryrefslogtreecommitdiff
path: root/crypto/bn/bn_sqr.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2001-09-05 04:43:43 +0000
committerUlf Möller <ulf@openssl.org>2001-09-05 04:43:43 +0000
commitd98a4b73664d0331f90da4f9521d7eea5f4567e5 (patch)
tree09d0dceb72950507809ce8b9a858d292b8033588 /crypto/bn/bn_sqr.c
parent889a54c4671acbf59adc399831525e50a5902580 (diff)
downloadopenssl-new-d98a4b73664d0331f90da4f9521d7eea5f4567e5.tar.gz
bug fix: bn_sqr_recursive output is twice its input size.
Diffstat (limited to 'crypto/bn/bn_sqr.c')
-rw-r--r--crypto/bn/bn_sqr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_sqr.c b/crypto/bn/bn_sqr.c
index b75e6194d0..c1d0cca438 100644
--- a/crypto/bn/bn_sqr.c
+++ b/crypto/bn/bn_sqr.c
@@ -245,7 +245,7 @@ void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t)
if (!zero)
bn_sqr_recursive(&(t[n2]),t,n,p);
else
- memset(&(t[n2]),0,n*sizeof(BN_ULONG));
+ memset(&(t[n2]),0,n2*sizeof(BN_ULONG));
bn_sqr_recursive(r,a,n,p);
bn_sqr_recursive(&(r[n2]),&(a[n]),n,p);