diff options
Diffstat (limited to 'src/md5.c')
| -rw-r--r-- | src/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,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(*ctx)); /* In case it's sensitive */ } #ifndef ASM_MD5 |
