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

Collapse All | Expand All

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

Return to bug 244947