From: jfa Date: Wed, 12 Nov 2008 10:47:19 +0000 (+0000) Subject: Bug 0020034: [CEA 282] crash in SALOME_Session_Server after SMESH computation. X-Git-Tag: V4_1_4rc2~18 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8fc04800911cc4fdc3c0d47eb41243334f54fc89;p=modules%2Fsmesh.git Bug 0020034: [CEA 282] crash in SALOME_Session_Server after SMESH computation. --- diff --git a/src/SMESH/SMESH_subMesh.cxx b/src/SMESH/SMESH_subMesh.cxx index 8945f5e26..290ee4d76 100644 --- a/src/SMESH/SMESH_subMesh.cxx +++ b/src/SMESH/SMESH_subMesh.cxx @@ -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 ) {