]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
PAL11200. do not return NULL submeshes from getSubmeshes()
authoreap <eap@opencascade.com>
Thu, 16 Feb 2006 13:01:00 +0000 (13:01 +0000)
committereap <eap@opencascade.com>
Thu, 16 Feb 2006 13:01:00 +0000 (13:01 +0000)
src/SMESH_I/SMESH_subMesh_i.cxx

index f3aafd10886a2a387399597fafe89830c48a56fd..7772524b60a55bd534b24c2a0f336fbecd63fe4f 100644 (file)
@@ -146,7 +146,9 @@ bool getSubMeshes(::SMESH_subMesh*  theSubMesh,
     }
     break;
   }
-  default: theSubMeshList.push_back( aSubMeshDS );
+  default:
+    if ( aSubMeshDS )
+      theSubMeshList.push_back( aSubMeshDS );
   }
   return size < theSubMeshList.size();
 }