- 
    Bug 
- 
    Resolution: Fixed
- 
     P3 P3
- 
    9
                    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
 
-