Older versions of expat don't know XML_ERROR_FINISHED yet.

This commit is contained in:
Moritz Bunkus 2005-07-08 12:22:37 +00:00
parent c8426104bc
commit e502fc7c05

View File

@ -643,9 +643,8 @@ xml_parser_c::parse_one_xml_line() {
handle_xml_encoding(line); handle_xml_encoding(line);
line += "\n"; line += "\n";
if ((XML_Parse(m_xml_parser, line.c_str(), line.length(), if (XML_Parse(m_xml_parser, line.c_str(), line.length(),
m_xml_source->eof()) == 0) && m_xml_source->eof()) == 0) {
(XML_GetErrorCode(m_xml_parser) != XML_ERROR_FINISHED)) {
string error; string error;
XML_Error xerror; XML_Error xerror;