Skip to content

Commit

Permalink
Fix issue #84 remove memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
ndw committed Mar 8, 2013
1 parent f95bbdb commit 6fa3f85
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/com/xmlcalabash/util/TreeWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ public void startDocument(URI baseURI) {
public void endDocument() {
try {
receiver.endDocument();
receiver.close();
} catch (XPathException e) {
throw new XProcException(e);
}
Expand Down

0 comments on commit 6fa3f85

Please sign in to comment.