--- a/src/java.base/share/classes/sun/security/ssl/TransportContext.java Tue Aug 21 13:44:59 2018 +0100
+++ b/src/java.base/share/classes/sun/security/ssl/TransportContext.java Tue Aug 21 11:30:48 2018 -0700
@@ -63,6 +63,7 @@
boolean isInputCloseNotified = false;
boolean peerUserCanceled = false;
Exception closeReason = null;
+ Exception delegatedThrown = null;
// negotiated security parameters
SSLSessionImpl conSession;
@@ -364,12 +365,12 @@
}
}
- // terminal handshake context
+ // terminate the handshake context
if (handshakeContext != null) {
handshakeContext = null;
}
- // terminal the transport
+ // terminate the transport
try {
transport.shutdown();
} catch (IOException ioe) {