-
Bug
-
Resolution: Fixed
-
P4
-
8, 9, 10
-
b28
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8325481 | openjdk8u412 | Dhamoder Nalla | P4 | Resolved | Fixed | b03 |
FULL PRODUCT VERSION :
A DESCRIPTION OF THE PROBLEM :
On line 127 of KeepAliveCache.java (http://hg.openjdk.java.net/jdk9/dev/jdk/file/5a6df35b0f97/src/java.base/share/classes/sun/net/www/http/KeepAliveCache.java#l127) I found the following piece of code:
v.remove(h);
This strikes me as dubious, since h is of type HttpClient, but v is a vector of KeepAliveEntry objects. These two classes are unrelated, so I don't think v can ever contain h, and the call probably does nothing.
REPRODUCIBILITY :
This bug can be reproduced always.
A DESCRIPTION OF THE PROBLEM :
On line 127 of KeepAliveCache.java (http://hg.openjdk.java.net/jdk9/dev/jdk/file/5a6df35b0f97/src/java.base/share/classes/sun/net/www/http/KeepAliveCache.java#l127) I found the following piece of code:
v.remove(h);
This strikes me as dubious, since h is of type HttpClient, but v is a vector of KeepAliveEntry objects. These two classes are unrelated, so I don't think v can ever contain h, and the call probably does nothing.
REPRODUCIBILITY :
This bug can be reproduced always.
- backported by
-
JDK-8325481 Dubious collection management in sun.net.www.http.KeepAliveCache
-
- Resolved
-
- duplicates
-
JDK-8238581 Cleanup: sun.net.www.http.KeepAliveCache: remove(HttpClient, Object) ambiguously calls overloaded remove method
-
- Closed
-
- relates to
-
JDK-8185091 KeepAliveCache questionable code
-
- Closed
-