Skip to content

Commit a90f323

Browse files
Xiaolong PengSendaoYan
Xiaolong Peng
authored and
SendaoYan
committedMar 8, 2025
8349705: java.net.URI.scanIPv4Address throws unnecessary URISyntaxException
Reviewed-by: dfuchs
1 parent 7ec2e14 commit a90f323

File tree

1 file changed

+6
-2
lines changed
  • src/java.base/share/classes/java/net

1 file changed

+6
-2
lines changed
 

‎src/java.base/share/classes/java/net/URI.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -3466,7 +3466,7 @@ private int scanIPv4Address(int start, int n, boolean strict)
34663466
if (q < m) break;
34673467
return q;
34683468
}
3469-
fail("Malformed IPv4 address", q);
3469+
if (strict) fail("Malformed IPv4 address", q);
34703470
return -1;
34713471
}
34723472

@@ -3495,12 +3495,16 @@ private int parseIPv4Address(int start, int n) {
34953495
return -1;
34963496
}
34973497

3498+
if (p == -1) {
3499+
return p;
3500+
}
3501+
34983502
if (p > start && p < n) {
34993503
// IPv4 address is followed by something - check that
35003504
// it's a ":" as this is the only valid character to
35013505
// follow an address.
35023506
if (input.charAt(p) != ':') {
3503-
p = -1;
3507+
return -1;
35043508
}
35053509
}
35063510

0 commit comments

Comments
 (0)
Please sign in to comment.