[jboss-remoting-commits] JBoss Remoting SVN: r3745 - remoting2/branches/2.x/src/main/org/jboss/remoting.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Tue Mar 25 05:02:21 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-03-25 05:02:21 -0400 (Tue, 25 Mar 2008)
New Revision: 3745

Modified:
   remoting2/branches/2.x/src/main/org/jboss/remoting/InvokerLocator.java
Log:
JBREM-936: resolveHost() checks for host == null.

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/InvokerLocator.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/InvokerLocator.java	2008-03-25 08:59:05 UTC (rev 3744)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/InvokerLocator.java	2008-03-25 09:02:21 UTC (rev 3745)
@@ -455,8 +455,12 @@
 
    private static final String resolveHost(String host)
    {
-      if(host.indexOf("0.0.0.0") != -1)
+      if (host == null)
       {
+         host = fixRemoteAddress(host);
+      }
+      else if(host.indexOf("0.0.0.0") != -1)
+      {
          if(System.getProperty(SERVER_BIND_ADDRESS, "0.0.0.0").equals("0.0.0.0"))
          {
             host = fixRemoteAddress(host);




More information about the jboss-remoting-commits mailing list