8365940: Misleading macro in jvm_md.h:57

Reviewed-by: dholmes, kbarrett
This commit is contained in:
Matias Saavedra Silva 2025-11-03 16:34:41 +00:00
parent 02a7217491
commit 1922c4fd6f

View File

@ -54,7 +54,7 @@
// cause problems if JVM and the rest of JDK are built on different
// Linux releases. Here we define JVM_MAXPATHLEN to be MAXPATHLEN + 1,
// so buffers declared in VM are always >= 4096.
#define JVM_MAXPATHLEN MAXPATHLEN + 1
#define JVM_MAXPATHLEN (MAXPATHLEN + 1)
#endif
#define JVM_R_OK R_OK