summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmd5/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5/md5.c b/md5/md5.c
index 3782384..fed42c8 100755
--- a/md5/md5.c
+++ b/md5/md5.c
@@ -149,7 +149,7 @@ void MD5Final(unsigned char digest[16], MD5_CTX *ctx)
MD5Transform(ctx->buf, (uint32_t *) ctx->in);
byteReverse((unsigned char *)ctx->buf, 4);
memcpy(digest, ctx->buf, 16);
- memset((char *)ctx, 0, sizeof(ctx)); /* In case it's sensitive */
+ memset((char *)ctx, 0, sizeof(*ctx)); /* In case it's sensitive */
}
/* The four core functions - F1 is optimized somewhat */