-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 9
-
Component/s: hotspot
Declarations such as this one in classLoader.cpp allocates 4K of stack space:
char package[JIMAGE_MAX_PATH];
It would be better to allocate the memory as a RESOURCE_ARRAY to reduce the chance of a stack overflow.
char package[JIMAGE_MAX_PATH];
It would be better to allocate the memory as a RESOURCE_ARRAY to reduce the chance of a stack overflow.
- relates to
-
JDK-8159019 ResourceMark in ClassLoader::open_versioned_entry() is being used incorrectly
-
- Closed
-