Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2015-01-27 17:53:45 +0000
committerArun Thondapu2015-01-27 17:53:45 +0000
commitb05d334a701d74753767a7da8aad846d23177eca (patch)
tree3357667c5c68a53704e24b8a9ee72dcd29ad33fd
parente2c7e75a3c7029bdfdb129c0ff7ed68edfe36677 (diff)
downloadrt.equinox.framework-b05d334a701d74753767a7da8aad846d23177eca.tar.gz
rt.equinox.framework-b05d334a701d74753767a7da8aad846d23177eca.tar.xz
rt.equinox.framework-b05d334a701d74753767a7da8aad846d23177eca.zip
Bug 458558 - [1.9] --launcher.XXMaxPermSize should not pass
-XX:MaxPermSize= for Oracle VMs >= 8 Fix typo in Mac code Change-Id: I2ba3c9f590e245251007674142db9099ed6b321a Signed-off-by: Arun Thondapu <arunkumar.thondapu@in.ibm.com>
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c b/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c
index a158f64b0..b76584a56 100644
--- a/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c
+++ b/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c
@@ -537,7 +537,7 @@ char * getJavaVersion(char* command) {
if (value != NULL && (strtol(value, NULL, 10) == 1)) {
value = strtok(NULL, ".");
if (strtol(value, NULL, 10) < 8) {
- result = 1;
+ isSunMaxPermSizeVM = 1;
}
}
}

Back to the top