diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/benchmark/md5.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/benchmark/md5.c b/modules/benchmark/md5.c index 70f39c45..f4032ddd 100644 --- a/modules/benchmark/md5.c +++ b/modules/benchmark/md5.c @@ -173,7 +173,7 @@ struct MD5Context *ctx;      putu32(ctx->buf[1], digest + 4);      putu32(ctx->buf[2], digest + 8);      putu32(ctx->buf[3], digest + 12); -    memset(ctx, 0, sizeof(ctx));	/* In case it's sensitive */ +    memset(ctx, 0, sizeof(*ctx));	/* In case it's sensitive */  }  #ifndef ASM_MD5 | 
