|
Lines 1-11
Link Here
|
| 1 |
--- src/md5.c.orig 2014-02-14 17:34:29.000000000 +0100 |
|
|
| 2 |
+++ src/md5.c 2014-02-14 17:34:37.000000000 +0100 |
| 3 |
@@ -141,7 +141,7 @@ |
| 4 |
MD5Transform(ctx->buf, (uint32 *) ctx->in); |
| 5 |
byteReverse((unsigned char *) ctx->buf, 4); |
| 6 |
memcpy(digest, ctx->buf, 16); |
| 7 |
- memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ |
| 8 |
+ memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */ |
| 9 |
} |
| 10 |
|
| 11 |
#ifndef ASM_MD5 |