summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mul.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-12-13 13:47:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-12-13 13:47:33 +0000
commit2aff7727f700384de6ced15a97888a8405cb1214 (patch)
treeaa5c50faad985a6acf8f1373d5dcd99f0cade1ca /crypto/bn/bn_mul.c
parentcc93ae3ef4f76bcf64164ef3f83854bdfd4a074e (diff)
Rewrite the extension code to use an ASN1_ITEM structure
for its ASN1 operations as well as the old style function pointers (i2d, d2i, new, free). Change standard extensions to support this. Fix a warning in BN_mul(), bn_mul.c about uninitialised 'j'.
Diffstat (limited to 'crypto/bn/bn_mul.c')
-rw-r--r--crypto/bn/bn_mul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c
index 2810115c2b..b9d2b3c2cc 100644
--- a/crypto/bn/bn_mul.c
+++ b/crypto/bn/bn_mul.c
@@ -939,7 +939,7 @@ int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
#endif
#ifdef BN_RECURSION
BIGNUM *t;
- int j,k;
+ int j=0,k;
#endif
#ifdef BN_COUNT