-
Bug
-
Resolution: Fixed
-
P3
-
6u131
-
b01
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8188349 | 6u181 | Unassigned | P3 | Resolved | Fixed | b01 |
JDK-8177978 | 6u161 | Sean Coffey | P3 | Resolved | Fixed | b03 |
Double call error crept in while TLSv1.2 was being backported to JDK 6u :
src/share/classes/com/sun/net/ssl/internal/ssl/Handshaker.java
if (conn != null) {
algorithmConstraints = new SSLAlgorithmConstraints(conn, true);
algorithmConstraints = new SSLAlgorithmConstraints(conn, true);
} else { // engine != null
algorithmConstraints = new SSLAlgorithmConstraints(engine, true);
algorithmConstraints = new SSLAlgorithmConstraints(engine, true);
}
src/share/classes/com/sun/net/ssl/internal/ssl/Handshaker.java
if (conn != null) {
algorithmConstraints = new SSLAlgorithmConstraints(conn, true);
algorithmConstraints = new SSLAlgorithmConstraints(conn, true);
} else { // engine != null
algorithmConstraints = new SSLAlgorithmConstraints(engine, true);
algorithmConstraints = new SSLAlgorithmConstraints(engine, true);
}
- backported by
-
JDK-8177978 Commit in 8133817:TLSv1.2 to JDK 6u incl double call of SSLAAlgorithmConstructor
- Resolved
-
JDK-8188349 Commit in 8133817:TLSv1.2 to JDK 6u incl double call of SSLAAlgorithmConstructor
- Resolved
- relates to
-
JDK-8133817 Backport TLSv1.2 to JDK 6u
- Closed