Index: applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java
===================================================================
--- applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java	(revision 28708)
+++ 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;
+			    }
 			}
 		}
