Commit a34664c6 by Michael Koch Committed by Michael Koch

re PR libgcj/17069 (InetAddress.getLocalHost() returns broken InetAddress object…

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
parent 5a3ed97a
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.
......
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment