Chromium Code Reviews| Index: libyasm/md5.c |
| =================================================================== |
| --- libyasm/md5.c (revision 73761) |
| +++ libyasm/md5.c (working copy) |
| @@ -163,7 +163,7 @@ |
| putu32(ctx->buf[1], digest + 4); |
| putu32(ctx->buf[2], digest + 8); |
| putu32(ctx->buf[3], digest + 12); |
| - memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ |
| + memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */ |
| } |
| #ifndef ASM_MD5 |