diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-18 12:10:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-18 12:10:32 +0000 |
commit | ca5d4067c9997c6f7cffee0d6bda43eb3e378126 (patch) | |
tree | b23dda192c08d77a8b1958dc0d08e9216f98bcb9 /unoxml | |
parent | a55158aa1fa5174acdff9923cd55c3180b40cccc (diff) |
free ctxt *after* taking lastError details
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/dom/documentbuilder.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx index 1c7f3140a33e..6c9d52b955b9 100644 --- a/unoxml/source/dom/documentbuilder.cxx +++ b/unoxml/source/dom/documentbuilder.cxx @@ -314,13 +314,13 @@ namespace DOM } // extern "C" - void throwEx(xmlParserCtxtPtr ctxt) { - OUString msg = make_error_message(ctxt); - xmlFreeParserCtxt(ctxt); + void throwEx(xmlParserCtxtPtr ctxt) + { com::sun::star::xml::sax::SAXParseException saxex; - saxex.Message = msg; + 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; } |