X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOMImpl%2FGEOMImpl_ImportDriver.cxx;h=3249a485e69142bcbe322576659cb9eb685e243f;hb=e7e908bf4c7c8bec141fe2d3b4a9924ddaea6c04;hp=1e9616700a69ede2496030324affa5d5f714be8c;hpb=e180c20f73ffa96c2d039106f2a2a868c8bc0df1;p=modules%2Fgeom.git diff --git a/src/GEOMImpl/GEOMImpl_ImportDriver.cxx b/src/GEOMImpl/GEOMImpl_ImportDriver.cxx index 1e9616700..3249a485e 100644 --- a/src/GEOMImpl/GEOMImpl_ImportDriver.cxx +++ b/src/GEOMImpl/GEOMImpl_ImportDriver.cxx @@ -15,7 +15,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include @@ -29,7 +29,7 @@ #include -#include +#include #include #ifdef WNT @@ -93,20 +93,25 @@ Standard_Integer GEOMImpl_ImportDriver::Execute(TFunction_Logbook& log) const return 0; // load plugin library - LibHandle anImportLib = LoadLib( aLibName.ToCString() ); + LibHandle anImportLib = LoadLib( aLibName.ToCString() ); //This is workaround of BUG OCC13051 funcPoint fp = 0; if ( anImportLib ) fp = (funcPoint)GetProc( anImportLib, "Import" ); - if ( !fp ) - return 0; + if ( !fp ) { + TCollection_AsciiString aMsg = aFormatName; + aMsg += " plugin was not installed"; + Standard_Failure::Raise(aMsg.ToCString()); + } // perform the import TCollection_AsciiString anError; TopoDS_Shape aShape = fp( aFileName, aFormatName, anError ); // unload plugin library - UnLoadLib( anImportLib ); + // commented by enk: + // the bug was occured: using ACIS Import/Export plugin + //UnLoadLib( anImportLib ); //This is workaround of BUG OCC13051 if ( aShape.IsNull() ) { StdFail_NotDone::Raise(anError.ToCString());