]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix for Bug IPAL11511
authorapo <apo@opencascade.com>
Mon, 6 Feb 2006 08:10:26 +0000 (08:10 +0000)
committerapo <apo@opencascade.com>
Mon, 6 Feb 2006 08:10:26 +0000 (08:10 +0000)
   CRASH if to import not MED file in Post-Pro module.
(before a creation of a VISU_MedConvertor instance we check if it is possible to manage the defined file)

src/CONVERTOR/VISU_MedConvertor.cxx

index 1d51be103ab942f4d6167f2ad9b864254b7e707f..2eaddcfe6d7449aa0b81033270e69e4bc8fdec3b 100644 (file)
@@ -958,7 +958,9 @@ extern "C"
 VISU_Convertor* 
 CreateConvertor(const string& theFileName)
 {
-  return new VISU_MedConvertor(theFileName);
+  if(MED::PWrapper aMed = MED::CrWrapper(theFileName))
+    return new VISU_MedConvertor(theFileName);
+  return NULL;
 }
 
 VISU_MedConvertor