8297569: URLPermission constructor throws IllegalArgumentException: Invalid characters in hostname after JDK-8294378

Reviewed-by: dfuchs
This commit is contained in:
Jaikiran Pai 2022-11-25 01:23:53 +00:00
parent 87d1097d9b
commit 2f47f83add
3 changed files with 4 additions and 5 deletions

View file

@ -494,7 +494,7 @@ public final class URLPermission extends Permission {
auth = authpath.substring(0, delim);
this.path = authpath.substring(delim);
}
this.authority = new Authority(scheme, auth);
this.authority = new Authority(scheme, auth.toLowerCase(Locale.ROOT));
}
private String actions() {