]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
fix bug in parser options concatenation
authorfps <fps@opencascade.com>
Tue, 26 Nov 2013 12:46:54 +0000 (12:46 +0000)
committerfps <fps@opencascade.com>
Tue, 26 Nov 2013 12:46:54 +0000 (12:46 +0000)
src/XAO/XAO_XaoExporter.cxx

index bd34efafb2354a80167cba36ad47df041bd995b9..c873bdb0dfe1fe273cae73535b82b524aefba4a8 100644 (file)
@@ -636,7 +636,7 @@ const bool XaoExporter::readFromFile(const std::string& fileName, Xao* xaoObject
 throw (XAO_Exception)
 {
     // parse the file and get the DOM
-    int options = XML_PARSE_HUGE || XML_PARSE_NOCDATA;
+    int options = XML_PARSE_HUGE | XML_PARSE_NOCDATA;
     xmlDocPtr doc = xmlReadFile(fileName.c_str(), NULL, options);
     if (doc == NULL)
     {
@@ -650,7 +650,7 @@ throw (XAO_Exception)
 const bool XaoExporter::setXML(const std::string& xml, Xao* xaoObject)
 throw (XAO_Exception)
 {
-    int options = XML_PARSE_HUGE || XML_PARSE_NOCDATA;
+    int options = XML_PARSE_HUGE | XML_PARSE_NOCDATA;
     xmlDocPtr doc = xmlReadDoc(BAD_CAST xml.c_str(), "", NULL, options);
     if (doc == NULL)
     {