fwcutter/make: Avoid _DEFAULT_SOURCE warning
[b43-tools.git] / fwcutter / md5.c
index 91809644ec4d9c91b45c2493f02fb161a22f6650..e8270c35050bdb9d888de74e39fa91f2441606c5 100644 (file)
@@ -242,5 +242,5 @@ void MD5Final(unsigned char *digest, struct MD5Context *ctx)
     MD5Transform(ctx->buf, ctx->u.in_u32);
     byteReverse((unsigned char *) ctx->buf, 4);
     memcpy(digest, ctx->buf, 16);
     MD5Transform(ctx->buf, ctx->u.in_u32);
     byteReverse((unsigned char *) 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 */
 }
 }