Browse Source

Merge pull request #288 in CORE/base-third from ~BJORN/base-third:final/10.0 to final/10.0

* commit '4bbacd1f41c52bb23c37dd06ba65adc481875a0b':
  代码质量
  无JIRA任务 inux下缺失了系统供应商信息的文件会导致栈溢出
final/10.0.3
Kara 5 years ago
parent
commit
b65b8bbe5d
  1. 8
      fine-j2v8/src/com/eclipsesource/v8/PlatformDetector.java

8
fine-j2v8/src/com/eclipsesource/v8/PlatformDetector.java

@ -125,7 +125,9 @@ public class PlatformDetector {
return "google";
}
throw new UnsatisfiedLinkError("Unsupported vendor: " + getName());
//如果if条件全部不符合,就会陷入死循环,代码存在风险
//throw new UnsatisfiedLinkError("Unsupported vendor: " + getName());
return StringUtils.EMPTY;
}
private static String getLinuxOsReleaseId() {
@ -144,7 +146,9 @@ public class PlatformDetector {
return parseLinuxRedhatReleaseFile(file);
}
throw new UnsatisfiedLinkError("Unsupported linux vendor: " + getName());
//linux系统下如果缺失/etc/os-release,/usr/lib/os-release,/etc/redhat-release三个文件,就会和getName方法就会一直互相调用
//throw new UnsatisfiedLinkError("Unsupported linux vendor: " + getName());
return StringUtils.EMPTY;
}
private static String parseLinuxOsReleaseFile(final File file) {

Loading…
Cancel
Save