Index: applications/editors/josm/plugins/reltoolbox/build.xml
===================================================================
--- applications/editors/josm/plugins/reltoolbox/build.xml	(revision 28709)
+++ applications/editors/josm/plugins/reltoolbox/build.xml	(revision 28710)
@@ -30,5 +30,5 @@
 <project name="reltoolbox" default="dist" basedir=".">
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="RelToolbox: fix possible NPE in associatedStreet fixer"/>
+    <property name="commit.message" value="RelToolbox: update validations for associatedStreet"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     <property name="plugin.main.version" value="5018"/>
Index: applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java
===================================================================
--- applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java	(revision 28709)
+++ applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java	(revision 28710)
@@ -49,6 +49,9 @@
 		for (RelationMember m : rel.getMembers()) {
 			if ("street".equals(m.getRole()) && !streetName.equals(m.getWay().get("name"))) {
-			    setWarningMessage(tr("Relation has streets with different names"));
-			    return false;
+			    String anotherName = m.getWay().get("name");
+			    if (anotherName != null && !anotherName.isEmpty()) {
+    			    setWarningMessage(tr("Relation has streets with different names"));
+    			    return false;
+			    }
 			}
 		}
