We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6843a1 commit bf19fc6Copy full SHA for bf19fc6
src/java.base/unix/native/libjava/java_props_md.c
@@ -488,8 +488,16 @@ GetJavaProperties(JNIEnv *env)
488
#else
489
sprops.user_home = pwent ? strdup(pwent->pw_dir) : NULL;
490
#endif
491
- if (sprops.user_home == NULL) {
492
- sprops.user_home = "?";
+ if (sprops.user_home == NULL || sprops.user_home[0] == '\0' ||
+ sprops.user_home[1] == '\0') {
493
+ // If the OS supplied home directory is not defined or less than two characters long
494
+ // $HOME is the backup source for the home directory, if defined
495
+ char* user_home = getenv("HOME");
496
+ if ((user_home != NULL) && (user_home[0] != '\0')) {
497
+ sprops.user_home = user_home;
498
+ } else {
499
+ sprops.user_home = "?";
500
+ }
501
}
502
503
0 commit comments