Salome HOME
Bug 0020034: [CEA 282] crash in SALOME_Session_Server after SMESH computation.
authorjfa <jfa@opencascade.com>
Wed, 12 Nov 2008 10:47:19 +0000 (10:47 +0000)
committerjfa <jfa@opencascade.com>
Wed, 12 Nov 2008 10:47:19 +0000 (10:47 +0000)
src/SMESH/SMESH_subMesh.cxx

index 8945f5e26d4dc7960c50bfbe6c0561fd0d533562..290ee4d768f9076731a88f701ced5ff1e82c4ec0 100644 (file)
@@ -1360,7 +1360,7 @@ bool SMESH_subMesh::ComputeStateEngine(int event)
           {
             ret = algo->Compute((*_father), shape);
           }
-          if ( !ret && _computeError->IsOK() ) // algo can set _computeError of submesh
+          if ( !_computeError || ( !ret && _computeError->IsOK() ) ) // algo can set _computeError of submesh
             _computeError = algo->GetComputeError();
         }
         catch ( std::bad_alloc& exc ) {