From 05a2e86bac77019bc8ed56e4be87847ffa239282 Mon Sep 17 00:00:00 2001 From: akl Date: Tue, 11 Mar 2014 11:07:29 +0400 Subject: [PATCH] Fix of bug 0022506: [CEA 1086] Import in GEOM returns "unknown exception" --- src/GEOMImpl/GEOMImpl_IInsertOperations.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/GEOMImpl/GEOMImpl_IInsertOperations.cxx b/src/GEOMImpl/GEOMImpl_IInsertOperations.cxx index 983b68e83..c9275139c 100755 --- a/src/GEOMImpl/GEOMImpl_IInsertOperations.cxx +++ b/src/GEOMImpl/GEOMImpl_IInsertOperations.cxx @@ -563,7 +563,8 @@ Standard_Boolean GEOMImpl_IInsertOperations::InitResMgr() myResMgrList.clear(); // Initialize the GEOM Resource Manager - TCollection_AsciiString aResDir = TCollection_AsciiString(getenv("GEOM_ROOT_DIR")); + TCollection_AsciiString aResDir; + aResDir = getenv("GEOM_ROOT_DIR"); #ifdef WIN32 aResDir += "\\share\\salome\\resources\\geom"; #else @@ -576,7 +577,8 @@ Standard_Boolean GEOMImpl_IInsertOperations::InitResMgr() } // Initialize the user's Resource Manager - TCollection_AsciiString aResDirsStr = getenv("GEOM_ENGINE_RESOURCES_DIR"); + TCollection_AsciiString aResDirsStr; + aResDirsStr = getenv("GEOM_ENGINE_RESOURCES_DIR"); if ( !aResDirsStr.IsEmpty() ) { std::string aSep = ":"; -- 2.39.2