8173758: tools/javac/Paths/wcMineField.sh failing with java.lang.ClassNotFoundException

Reviewed-by: ksrini
This commit is contained in:
Henry Jen
2017-02-01 09:52:46 -08:00
parent 6792c8bb23
commit e650ed51fb

View File

@@ -1587,7 +1587,7 @@ static char* expandWildcardOnLongOpt(char* arg) {
p = JLI_MemAlloc(optLen + valueLen + 1);
memcpy(p, arg, optLen);
memcpy(p + optLen, value, valueLen);
p[optLen + valueLen + 1] = '\0';
p[optLen + valueLen] = '\0';
return p;
}