diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-05-16 01:40:30 +0200 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-05-16 01:50:30 +0200 |
commit | 2108d136b976342505e64f46d0b7a4ccf68b7299 (patch) | |
tree | d782596381424cdd067ed57efa56b3c50badda4c /unoxml/source/dom/documentbuilder.cxx | |
parent | 8b23d5be319ed4bac5d855c127dcfe7c6d0dc32c (diff) |
fdo#35668: do not manually free parser context
* reenable complex.unoxml.DOMTest testXDocumentBuilder()
* do not manually free parser context, there is a shared_ptr for that
Diffstat (limited to 'unoxml/source/dom/documentbuilder.cxx')
-rw-r--r-- | unoxml/source/dom/documentbuilder.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx index 8b38fd36fe44..b5c19d0a5a40 100644 --- a/unoxml/source/dom/documentbuilder.cxx +++ b/unoxml/source/dom/documentbuilder.cxx @@ -316,7 +316,6 @@ namespace DOM saxex.Message = make_error_message(ctxt); saxex.LineNumber = static_cast<sal_Int32>(ctxt->lastError.line); saxex.ColumnNumber = static_cast<sal_Int32>(ctxt->lastError.int2); - xmlFreeParserCtxt(ctxt); throw saxex; } |