summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-09-01 13:45:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-09-01 13:45:25 +0000
commite3b95e6b24e858736b7df0f54ff86bd7b112a32e (patch)
treef75e8a70c75534609ee9be6761387c82e6cb91f1 /engines
parent658eeec7cd40f2bd63373e0ec4b76cf428cfad0a (diff)
PR: 2586
Submitted by: Thomas Jarosch <thomas.jarosch@intra2net.com> Reviewed by: steve Zero structure fields properly.
Diffstat (limited to 'engines')
-rw-r--r--engines/ccgost/gost_crypt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/ccgost/gost_crypt.c b/engines/ccgost/gost_crypt.c
index 4977d1dcf5..cde58c0e9b 100644
--- a/engines/ccgost/gost_crypt.c
+++ b/engines/ccgost/gost_crypt.c
@@ -495,7 +495,8 @@ int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx,ASN1_TYPE *params)
int gost_imit_init_cpa(EVP_MD_CTX *ctx)
{
struct ossl_gost_imit_ctx *c = ctx->md_data;
- memset(c->buffer,0,16);
+ memset(c->buffer,0,sizeof(c->buffer));
+ memset(c->partial_block,0,sizeof(c->partial_block));
c->count = 0;
c->bytes_left=0;
c->key_meshing=1;