Lines 1458-1464
Link Here
|
1458 |
// save it in _java_vendor_url_bug, so JVM fatal error handler can access |
1458 |
// save it in _java_vendor_url_bug, so JVM fatal error handler can access |
1459 |
// its value without going through the property list or making a Java call. |
1459 |
// its value without going through the property list or making a Java call. |
1460 |
_java_vendor_url_bug = os::strdup_check_oom(value, mtArguments); |
1460 |
_java_vendor_url_bug = os::strdup_check_oom(value, mtArguments); |
1461 |
if (old_java_vendor_url_bug != DEFAULT_VENDOR_URL_BUG) { |
1461 |
if (strcmp(old_java_vendor_url_bug, DEFAULT_VENDOR_URL_BUG) != 0) { |
1462 |
assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL"); |
1462 |
assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL"); |
1463 |
os::free((void *)old_java_vendor_url_bug); |
1463 |
os::free((void *)old_java_vendor_url_bug); |
1464 |
} |
1464 |
} |