Accepting request 535804 from home:lwfinger:branches:devel:tools:building

- Update to version 0.1.9998svn3110. VirtualBox 5.2.0 needs this one to build.
  Changes detailed in upstream url from svn 2815 to 3110.
- Rebased patches
- Removed test for openSUSE 12.3 from spec file.

OBS-URL: https://build.opensuse.org/request/show/535804
OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/kbuild?expand=0&rev=34
This commit is contained in:
Martin Pluskal
2017-10-24 15:07:10 +00:00
committed by Git OBS Bridge
parent c451fbfefa
commit c3b73455b9
11 changed files with 112 additions and 110 deletions

View File

@@ -1,12 +1,12 @@
Index: kbuild-0.1.9998svn2543/src/lib/md5.c
Index: kbuild-0.1.9998svn3110/src/lib/md5.c
===================================================================
--- kbuild-0.1.9998svn2543.orig/src/lib/md5.c
+++ kbuild-0.1.9998svn2543/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(*ctx)); /* In case it's sensitive */
+ memset(ctx, 0, sizeof(struct MD5Context)); /* In case it's sensitive */
}