@@ -2009,6 +2009,12 @@ private InputStream getInputStream0() throws IOException {
2009
2009
if (serverAuthKey != null ) {
2010
2010
AuthenticationInfo .endAuthRequest (serverAuthKey );
2011
2011
}
2012
+ if (proxyAuthentication != null ) {
2013
+ proxyAuthentication .disposeContext ();
2014
+ }
2015
+ if (serverAuthentication != null ) {
2016
+ serverAuthentication .disposeContext ();
2017
+ }
2012
2018
}
2013
2019
}
2014
2020
@@ -2252,6 +2258,9 @@ private void doTunneling0() throws IOException {
2252
2258
if (proxyAuthKey != null ) {
2253
2259
AuthenticationInfo .endAuthRequest (proxyAuthKey );
2254
2260
}
2261
+ if (proxyAuthentication != null ) {
2262
+ proxyAuthentication .disposeContext ();
2263
+ }
2255
2264
}
2256
2265
2257
2266
// restore original request headers
@@ -2502,6 +2511,7 @@ public InetAddress run()
2502
2511
}
2503
2512
if (ret != null ) {
2504
2513
if (!ret .setHeaders (this , p , raw )) {
2514
+ ret .disposeContext ();
2505
2515
ret = null ;
2506
2516
}
2507
2517
}
@@ -2674,6 +2684,7 @@ private AuthenticationInfo getServerAuthentication(AuthenticationHeader authhdr)
2674
2684
2675
2685
if (ret != null ) {
2676
2686
if (!ret .setHeaders (this , p , raw )) {
2687
+ ret .disposeContext ();
2677
2688
ret = null ;
2678
2689
}
2679
2690
}
@@ -2700,6 +2711,7 @@ private void checkResponseCredentials (boolean inClose) throws IOException {
2700
2711
DigestAuthentication da = (DigestAuthentication )
2701
2712
currentProxyCredentials ;
2702
2713
da .checkResponse (raw , method , getRequestURI ());
2714
+ currentProxyCredentials .disposeContext ();
2703
2715
currentProxyCredentials = null ;
2704
2716
}
2705
2717
}
@@ -2710,6 +2722,7 @@ private void checkResponseCredentials (boolean inClose) throws IOException {
2710
2722
DigestAuthentication da = (DigestAuthentication )
2711
2723
currentServerCredentials ;
2712
2724
da .checkResponse (raw , method , url );
2725
+ currentServerCredentials .disposeContext ();
2713
2726
currentServerCredentials = null ;
2714
2727
}
2715
2728
}
0 commit comments