Details
-
Bug
-
Resolution: Fixed
-
P5
-
9
-
b06
-
windows
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8246814 | openjdk8u272 | Unassigned | P5 | Resolved | Fixed | b01 |
Description
In the file ./windows/native/sun/net/spi/DefaultProxySelector.c
strtok() is used to parse a string.
This can potentially cause a problem, as this function isn't thread-safe.
It should be replaced with strtok_s().
strtok() is used to parse a string.
This can potentially cause a problem, as this function isn't thread-safe.
It should be replaced with strtok_s().
Attachments
Issue Links
- backported by
-
JDK-8246814 Replace strtok() with its safe equivalent strtok_s() in DefaultProxySelector.c
- Resolved