Bug correction on mac osx :

based on libxml2 documentation : xmlCleanupParser() function must not be called several times
This commit is contained in:
Damien Dupuis 2010-09-21 09:58:53 +00:00
parent 136e5e90c7
commit 1155d95365
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ namespace {
if ( _status != 0 ) {
cerr << "[ERROR] Syntax error in \"" << _fileName << "\" configuration file." << endl;
}
xmlCleanupParser ();
// xmlCleanupParser (); // CF libxml2 documentation if libxml2 parser is use by the application any other time : DO NOT CALL xmlCleanupParser (at least on mac osx)
}
return (_status == 0);