JSSE: skip setting ssl to null in Input/OutputStream.close() in case other thread is blocked in ssl.read/write() on select/poll()
parent
6e69cb2241
commit
32ac8ac11c
|
@ -2443,7 +2443,6 @@ public class WolfSSLSocket extends SSLSocket {
|
|||
}
|
||||
|
||||
this.socket = null;
|
||||
this.ssl = null;
|
||||
this.isClosed = true;
|
||||
|
||||
/* Reset "is closing" state to false, now closed */
|
||||
|
@ -2663,7 +2662,6 @@ public class WolfSSLSocket extends SSLSocket {
|
|||
}
|
||||
|
||||
this.socket = null;
|
||||
this.ssl = null;
|
||||
this.isClosed = true;
|
||||
|
||||
/* Reset "is closing" state to false, now closed */
|
||||
|
|
Loading…
Reference in New Issue