summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_ctx.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-05 20:39:26 +0000
committerBodo Möller <bodo@openssl.org>2000-02-05 20:39:26 +0000
commiteb5a6a55c51a7409da9433afc15efa9d5ec2f93a (patch)
tree68c45b433794283143c4316d62937fa5005cc053 /crypto/bn/bn_ctx.c
parent37e48b88adda9334fedf83e18f1bff72b4b9c8cf (diff)
Commit patch to bn.h that CVS decided to throw away during 'cvs update',
and initialize too_many because memset(..., 0, ...) is not used here.
Diffstat (limited to 'crypto/bn/bn_ctx.c')
-rw-r--r--crypto/bn/bn_ctx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/bn/bn_ctx.c b/crypto/bn/bn_ctx.c
index f72b075ccf..93d08152f7 100644
--- a/crypto/bn/bn_ctx.c
+++ b/crypto/bn/bn_ctx.c
@@ -87,6 +87,7 @@ void BN_CTX_init(BN_CTX *ctx)
ctx->tos = 0;
ctx->flags = 0;
ctx->depth = 0;
+ ctx->too_many = 0;
for (i = 0; i < BN_CTX_NUM; i++)
BN_init(&(ctx->bn[i]));
}