View | Details | Raw Unified | Return to bug 244961 | Differences between
and this patch

Collapse All | Expand All

(-)src/hotspot/share/runtime/arguments.cpp (-1 / +1 lines)
Lines 1445-1451 Link Here
1445
      // save it in _java_vendor_url_bug, so JVM fatal error handler can access
1445
      // save it in _java_vendor_url_bug, so JVM fatal error handler can access
1446
      // its value without going through the property list or making a Java call.
1446
      // its value without going through the property list or making a Java call.
1447
      _java_vendor_url_bug = os::strdup_check_oom(value, mtArguments);
1447
      _java_vendor_url_bug = os::strdup_check_oom(value, mtArguments);
1448
      if (old_java_vendor_url_bug != DEFAULT_VENDOR_URL_BUG) {
1448
      if (strcmp(old_java_vendor_url_bug, DEFAULT_VENDOR_URL_BUG) != 0) {
1449
        assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL");
1449
        assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL");
1450
        os::free((void *)old_java_vendor_url_bug);
1450
        os::free((void *)old_java_vendor_url_bug);
1451
      }
1451
      }

Return to bug 244961