kbuild/kbuild-wrong-memset.patch

14 lines
553 B
Diff
Raw Normal View History

Index: kbuild-0.1.9998svn3110/src/lib/md5.c
===================================================================
--- kbuild-0.1.9998svn3110.orig/src/lib/md5.c
+++ kbuild-0.1.9998svn3110/src/lib/md5.c
@@ -144,7 +144,7 @@ void MD5Final(unsigned char digest[16],
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(struct MD5Context)); /* In case it's sensitive */
}