diff options
author | 2011-07-13 07:35:14 +0000 | |
---|---|---|
committer | 2011-07-13 07:35:14 +0000 | |
commit | 5a59cde33ddb09596070f25ec3ecbf4ec91d9093 (patch) | |
tree | 14e9bf006c8c72323d9c1f5f031463a76cd21bc5 /src/lib/util/md5.c | |
parent | ff0d52a4f6af3322896c60db603f6dc4304b147b (diff) |
Fix for memsets in core (no whatsnew)
Diffstat (limited to 'src/lib/util/md5.c')
-rw-r--r-- | src/lib/util/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/md5.c b/src/lib/util/md5.c index 28797aa811c..ba1406f6358 100644 --- a/src/lib/util/md5.c +++ b/src/lib/util/md5.c @@ -129,7 +129,7 @@ MD5Final(md5byte digest[16], struct MD5Context *ctx) byteSwap(ctx->buf, 4); memcpy(digest, ctx->buf, 16); - memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ + memset(ctx, 0, sizeof(MD5Context)); /* In case it's sensitive */ } #ifndef ASM_MD5 |