diff --git a/alib2common/src/sax/SaxParseInterface.cpp b/alib2common/src/sax/SaxParseInterface.cpp index a142bddf1f07a2343dbb0a47c47183c109dc0a9f..7e4cda590f8b5679457c37efbff74aec747e83ba 100644 --- a/alib2common/src/sax/SaxParseInterface.cpp +++ b/alib2common/src/sax/SaxParseInterface.cpp @@ -26,6 +26,7 @@ void SaxParseInterface::parseMemory(const std::string& xmlIn, std::deque<Token>& xmlFreeTextReader(reader); xmlFreeParserInputBuffer(buf); xmlCleanupCharEncodingHandlers(); + xmlCleanupParser(); if (result != 0) { throw exception::CommonException("Cannot parse the XML file " + xmlIn); @@ -38,6 +39,8 @@ void SaxParseInterface::parseFile(const std::string& filename, std::deque<Token> int result = SaxParseInterface::xmlSAXUserParse(reader, out); xmlFreeTextReader(reader); + xmlCleanupCharEncodingHandlers(); + xmlCleanupParser(); if (result != 0) { throw exception::CommonException("Cannot parse the XML file " + filename);