--- old/src/hotspot/share/runtime/os.cpp 2019-08-09 17:37:06.492826101 +0100 +++ new/src/hotspot/share/runtime/os.cpp 2019-08-09 17:37:05.788810321 +0100 @@ -1349,7 +1349,7 @@ for (int i = 0 ; i < count ; i++) { size_t len = strcspn(p, os::path_separator()); if (len > JVM_MAXPATHLEN) { - return NULL; + //return NULL; } // allocate the string and add terminator storage char* s = (char*)NEW_C_HEAP_ARRAY(char, len + 1, mtInternal);