Skip to content

Commit

Permalink
Add release note for #88
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 2, 2019
1 parent ece3b71 commit 6d962a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ Project: woodstox
=== Releases ===
------------------------------------------------------------------------

6.0.3 (not yet released)

#88: Missing closing quote for attribute values during in Validating output mode
(reported, fixed by michaelsiegel@github)

6.0.2 (12-Oct-2019)

#85: OSGi dependency on relaxng should be `optional`
(reprted by Colm H)
(reported by Colm H)

6.0.1 (14-Sep-2019)

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/ctc/wstx/sw/BufferingXmlWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -1363,8 +1363,8 @@ public void writeTypedAttribute(String prefix, String localName, String nsURI,
// First, let's see if one call is enough
mOutputPtr = enc.encodeMore(mOutputBuffer, mOutputPtr, mOutputBufLen);
if (enc.isCompleted()) { // yup
validator.validateAttribute(localName, nsURI, prefix, mOutputBuffer, start, mOutputPtr);
fastWriteRaw('"');
validator.validateAttribute(localName, nsURI, prefix, mOutputBuffer, start, mOutputPtr);
return;
}

Expand Down

0 comments on commit 6d962a4

Please sign in to comment.