java/openjdk15: Update to 15.0.4
This commit is contained in:
parent
3ab706b4bc
commit
96fd8c3f53
4 changed files with 5 additions and 57 deletions
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= openjdk
|
||||
DISTVERSIONPREFIX= jdk-
|
||||
DISTVERSION= ${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= java devel
|
||||
PKGNAMESUFFIX?= ${JDK_MAJOR_VERSION}
|
||||
|
||||
|
@ -55,8 +54,8 @@ NOPRECIOUSMAKEVARS= yes
|
|||
|
||||
JDK_MAJOR_VERSION= 15
|
||||
JDK_MINOR_VERSION= 0
|
||||
JDK_PATCH_VERSION= 2
|
||||
JDK_BUILD_NUMBER= 7
|
||||
JDK_PATCH_VERSION= 4
|
||||
JDK_BUILD_NUMBER= 5
|
||||
BSD_JDK_VERSION= 1
|
||||
|
||||
JDK_BUG_URL= https://bugs.freebsd.org/bugzilla/enter_bug.cgi?product=Ports%20%26%20Packages&component=Individual%20Port(s)&short_desc=java/${PORTNAME}${JDK_MAJOR_VERSION}%3A%20
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1611282896
|
||||
SHA256 (battleblow-jdk15u-jdk-15.0.2+7-1_GH0.tar.gz) = 52b9804f89c2b4d597a485450b145b7f033731147d0c75ec14f8e940f88decd1
|
||||
SIZE (battleblow-jdk15u-jdk-15.0.2+7-1_GH0.tar.gz) = 101982613
|
||||
TIMESTAMP = 1627707749
|
||||
SHA256 (battleblow-jdk15u-jdk-15.0.4+5-1_GH0.tar.gz) = 8c7aa041517f3b7fd04756a7f4beb6581eb1aeeeb37ea1afe1277ec908728e64
|
||||
SIZE (battleblow-jdk15u-jdk-15.0.4+5-1_GH0.tar.gz) = 102068657
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
commit c484d8904285652246c3af212a4211b9a8955149
|
||||
Author: Thomas Stuefe <stuefe@openjdk.org>
|
||||
Date: Tue Mar 16 05:49:01 2021 +0000
|
||||
|
||||
8263557: Possible NULL dereference in Arena::destruct_contents()
|
||||
|
||||
Reviewed-by: kbarrett, coleenp
|
||||
|
||||
diff --git src/hotspot/share/memory/arena.cpp src/hotspot/share/memory/arena.cpp
|
||||
index 8388f68c359..16059bed9be 100644
|
||||
--- src/hotspot/share/memory/arena.cpp
|
||||
+++ src/hotspot/share/memory/arena.cpp
|
||||
@@ -310,7 +310,9 @@ void Arena::destruct_contents() {
|
||||
// reset size before chop to avoid a rare racing condition
|
||||
// that can have total arena memory exceed total chunk memory
|
||||
set_size_in_bytes(0);
|
||||
- _first->chop();
|
||||
+ if (_first != NULL) {
|
||||
+ _first->chop();
|
||||
+ }
|
||||
reset();
|
||||
}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
commit f8a9602a0a65cdc98eb940aac9529256ded2bf42
|
||||
Author: Yasumasa Suenaga <ysuenaga@openjdk.org>
|
||||
Date: Thu Jan 21 06:08:13 2021 +0000
|
||||
|
||||
8260025: Missing comma in VM_Version_Ext::_family_id_amd
|
||||
|
||||
Reviewed-by: dholmes, stuefe
|
||||
|
||||
diff --git src/hotspot/cpu/x86/vm_version_ext_x86.cpp src/hotspot/cpu/x86/vm_version_ext_x86.cpp
|
||||
index 30d9494c654..a84b37f7977 100644
|
||||
--- src/hotspot/cpu/x86/vm_version_ext_x86.cpp
|
||||
+++ src/hotspot/cpu/x86/vm_version_ext_x86.cpp
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
- * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
+ * Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@@ -739,7 +739,7 @@ const char* const VM_Version_Ext::_family_id_amd[ExtendedFamilyIdLength_AMD] = {
|
||||
"",
|
||||
"",
|
||||
"Opteron/Athlon64",
|
||||
- "Opteron QC/Phenom" // Barcelona et.al.
|
||||
+ "Opteron QC/Phenom", // Barcelona et.al.
|
||||
"",
|
||||
"",
|
||||
"",
|
Loading…
Reference in a new issue