diff options
Diffstat (limited to 'src/3rdparty/md5')
-rw-r--r-- | src/3rdparty/md5/md5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/md5/md5.cpp b/src/3rdparty/md5/md5.cpp index ac296b5..16871e6 100644 --- a/src/3rdparty/md5/md5.cpp +++ b/src/3rdparty/md5/md5.cpp @@ -136,7 +136,7 @@ MD5Final(struct MD5Context *ctx, md5byte digest[16]) byteSwap(ctx->buf, 4); 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 */ } #ifndef ASM_MD5 |