From 3ba7955c3b57c87c278189f2e8f593c0893d3066 Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 6 May 2010 13:00:52 +0000 Subject: [PATCH] PAL21729 TC5.1.4: Problem with saving study after "Convert to quadratic" operation * Protect Save() from pb with submeshes with invalid id (without corresponding shape) --- src/SMESH_I/SMESH_Gen_i.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SMESH_I/SMESH_Gen_i.cxx b/src/SMESH_I/SMESH_Gen_i.cxx index 73588098f..9e9b90e4b 100644 --- a/src/SMESH_I/SMESH_Gen_i.cxx +++ b/src/SMESH_I/SMESH_Gen_i.cxx @@ -3048,6 +3048,8 @@ SALOMEDS::TMPFile* SMESH_Gen_i::Save( SALOMEDS::SComponent_ptr theComponent, if ( nbNodes == 0 ) continue; int aShapeID = (*itSubM).first; + if ( aShapeID < 1 || aShapeID > mySMESHDSMesh->MaxShapeIndex() ) + continue; int aShapeType = mySMESHDSMesh->IndexToShape( aShapeID ).ShapeType(); // write only SMDS_FacePosition and SMDS_EdgePosition switch ( aShapeType ) { -- 2.30.2