Modify ↓
#4804 closed defect (duplicate)
[PATCH] bug in OsmApi capabilities parsing
| Reported by: | Owned by: | team | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| 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 by , 16 years ago
| Summary: | bug in OsmApi capabilities parsing → [PATCH] bug in OsmApi capabilities parsing |
|---|
comment:2 by , 16 years ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
comment:3 by , 16 years ago
Note:
See TracTickets
for help on using tickets.



Closed as duplicate of #4950.