--- src/hotspot/share/runtime/arguments.cpp 2020-01-15 19:29:57.000000000 +0100 +++ src/hotspot/share/runtime/arguments.cpp 2020-03-20 19:01:00.765177000 +0100 @@ -1458,7 +1458,7 @@ // save it in _java_vendor_url_bug, so JVM fatal error handler can access // its value without going through the property list or making a Java call. _java_vendor_url_bug = os::strdup_check_oom(value, mtArguments); - if (old_java_vendor_url_bug != DEFAULT_VENDOR_URL_BUG) { + if (strcmp(old_java_vendor_url_bug, DEFAULT_VENDOR_URL_BUG) != 0) { assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL"); os::free((void *)old_java_vendor_url_bug); } --- src/hotspot/share/runtime/sharedRuntime.cpp 2020-01-15 19:29:57.000000000 +0100 +++ src/hotspot/share/runtime/sharedRuntime.cpp 2020-03-20 20:48:24.848005000 +0100 @@ -2806,7 +2806,7 @@ if (buf != NULL) { CodeBuffer buffer(buf); double locs_buf[20]; - buffer.insts()->initialize_shared_locs((relocInfo*)locs_buf, sizeof(locs_buf) / sizeof(relocInfo)); + buffer.insts()->initialize_shared_locs((relocInfo*)locs_buf, (sizeof(locs_buf)) / (sizeof(relocInfo))); MacroAssembler _masm(&buffer); // Fill in the signature array, for the calling-convention call. --- src/java.base/share/native/libfdlibm/e_asin.c 2020-01-15 19:29:57.000000000 +0100 +++ src/java.base/share/native/libfdlibm/e_asin.c 2020-03-20 21:09:32.793788000 +0100 @@ -97,12 +97,13 @@ } else if (ix<0x3fe00000) { /* |x|<0.5 */ if(ix<0x3e400000) { /* if |x| < 2**-27 */ if(huge+x>one) return x;/* return x with inexact if x!=0*/ - } else + } else { t = x*x; p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5))))); q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); w = p/q; return x+x*w; + } } /* 1> |x|>= 0.5 */ w = one-fabs(x);