fix a WRONG size argument to a memset() call found by Clang/LLVM

From /dev/humancontroller.
This commit is contained in:
Zack Middleton 2012-06-19 14:53:40 +00:00
parent 2db73231eb
commit 64c26ec338
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ static void MD5Final(struct MD5Context *ctx, unsigned char *digest)
if (digest!=NULL)
memcpy(digest, ctx->buf, 16);
memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */
}