From 1155d953650139fe208cbe0e10fe61f28cf5b037 Mon Sep 17 00:00:00 2001 From: Damien Dupuis Date: Tue, 21 Sep 2010 09:58:53 +0000 Subject: [PATCH] Bug correction on mac osx : based on libxml2 documentation : xmlCleanupParser() function must not be called several times --- vlsisapd/src/configuration/src/Configuration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlsisapd/src/configuration/src/Configuration.cpp b/vlsisapd/src/configuration/src/Configuration.cpp index d53d06c5..9b593092 100644 --- a/vlsisapd/src/configuration/src/Configuration.cpp +++ b/vlsisapd/src/configuration/src/Configuration.cpp @@ -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);