Merge pull request #180 from hapifhir/validator_throws_array_oob

Fix for array index out of bounds exception on adding profile for val…
This commit is contained in:
Grahame Grieve 2020-04-23 04:58:22 +10:00 committed by GitHub
commit f9521c326a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -92,18 +92,19 @@ public class Params {
i++; // ignore next parameter
} else if (args[i].equals(PROFILE)) {
String p = null;
if (i + 1 == args.length)
if (i + 1 == args.length) {
throw new Error("Specified -profile without indicating profile source");
else {
} else {
p = args[++i];
cliContext.addProfile(args[++i]);
cliContext.addProfile(args[i++]);
}
if (p != null && i + 1 < args.length && args[i + 1].equals("@")) {
i++;
if (i + 1 == args.length)
if (i + 1 == args.length) {
throw new Error("Specified -profile with @ without indicating profile location");
else
} else {
cliContext.addLocation(p, args[++i]);
}
}
} else if (args[i].equals(QUESTIONNAIRE)) {
if (i + 1 == args.length)