-
Bug
-
Resolution: Fixed
-
P4
-
10, 11, 12, 13
-
b05
In a few places of hotspot a possible failure of realloc isn't handled correctly: Either the return value isn't checked for NULL, of the original memory isn't freed, or both.
http://mail.openjdk.java.net/pipermail/net-dev/2019-January/012055.html
share/adlc/forms.cpp: if (_cur == _max) _names =(const char**)realloc(_names,(_max *=2)*sizeof(char*));
http://mail.openjdk.java.net/pipermail/net-dev/2019-January/012055.html
share/adlc/forms.cpp: if (_cur == _max) _names =(const char**)realloc(_names,(_max *=2)*sizeof(char*));
- relates to
-
JDK-8217440 Failure of ::realloc() should be handled correctly in loadlib_aix.cpp
- Open
-
JDK-8212779 ADL Parser does not check allocation return values in all cases
- Resolved
-
JDK-8217441 Failure of ::realloc() should be handled correctly in sawindbg.cpp
- Resolved