Modify ↓
#4804 closed defect (duplicate)
[PATCH] bug in OsmApi capabilities parsing
| Reported by: | eric.marsden@… | Owned by: | team |
|---|---|---|---|
| Priority: | normal | Component: | Core |
| Version: | Keywords: | ||
| Cc: |
Description
Please see patch below: SAX parsing is incorrectly iterating on qName.length() instead of atts.getLength().
This bug seems to be silently ignored by openjdk6, but causes problems with classpath-based JVMs.
Index: src/org/openstreetmap/josm/io/OsmApi.java
===================================================================
--- src/org/openstreetmap/josm/io/OsmApi.java (révision 3157)
+++ src/org/openstreetmap/josm/io/OsmApi.java (copie de travail)
@@ -121,7 +121,7 @@
}
@Override public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
- for (int i=0; i< qName.length(); i++) {
+ for (int i=0; i< atts.getLength(); i++) {
capabilities.put(qName, atts.getQName(i), atts.getValue(i));
}
}
Attachments (0)
Change History (3)
comment:1 Changed 3 years ago by bastiK
- Summary changed from bug in OsmApi capabilities parsing to [PATCH] bug in OsmApi capabilities parsing
comment:2 Changed 3 years ago by stoecker
- Resolution set to duplicate
- Status changed from new to closed
comment:3 Changed 3 years ago by stoecker
Note: See
TracTickets for help on using
tickets.



Closed as duplicate of #4950.