re PR libgcj/17069 (InetAddress.getLocalHost() returns broken InetAddress object if hostname not set)

2005-01-09  Michael Koch  <konqueror@gmx.de>

	PR libgcj/17069
	* java/net/InetAddress.java (getLocalHost):
	Throw UnknownHostException if local hostname cannot be determined.

From-SVN: r93115
This commit is contained in:
Michael Koch 2005-01-09 18:57:32 +00:00 committed by Michael Koch
parent 5a3ed97adb
commit a34664c6ba
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-01-09 Michael Koch <konqueror@gmx.de>
PR libgcj/17069
* java/net/InetAddress.java (getLocalHost):
Throw UnknownHostException if local hostname cannot be determined.
2005-01-06 Tom Tromey <tromey@redhat.com>
* java/lang/ClassLoader.java (findClass): Fixed documentation.

View File

@ -714,7 +714,7 @@ public class InetAddress implements Serializable
}
}
if (hostname != null)
if (hostname != null && hostname.length() != 0)
{
try
{
@ -725,6 +725,8 @@ public class InetAddress implements Serializable
{
}
}
else
throw new UnknownHostException();
if (localhost == null)
localhost = new InetAddress (loopbackAddress, "localhost");