Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
P3
-
Resolution: Fixed
-
Affects Version/s: 6u131
-
Fix Version/s: 6u171
-
Component/s: security-libs
-
Subcomponent:
-
Resolved In Build:b01
Backports
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 |
Description
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);
}
Attachments
Issue Links
- 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
-