]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
mcookie: correct wrong memset argument
authorPeter Korsgaard <peter@korsgaard.com>
Wed, 10 Jan 2018 22:03:03 +0000 (23:03 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 12 Jan 2018 18:57:19 +0000 (19:57 +0100)
Fixes #10216

Building mcookie generates a warning about possible wrong arguments to
memset:

mcookie.c:207:26: warning: argument to ‘sizeof’ in ‘memset’ call is the same expression
  as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
     memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */

ctx is a pointer to a structure, so the code should use the size of the
structure and not the size of the pointer when it tries to clear the
structure, similar to how it got fixed upstream back in 2009:

https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/commit/lib/md5.c?id=6596057175c6ed342dc20e85eae8a42eb29b629f

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/x11r7/mcookie/mcookie.c

index 902d92fc47a1e584e36638edd1e205b0684aa354..3c38f6f3b3c826bce36159d78ca2053f2282dcba 100644 (file)
@@ -204,7 +204,7 @@ void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
     MD5Transform(ctx->buf, (uint32 *) ctx->in);
     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 */
 }
 
 /* The four core functions - F1 is optimized somewhat */