From 4c00d9962541527c9f697faec6e74bed4676835d Mon Sep 17 00:00:00 2001 From: apo Date: Tue, 2 May 2006 12:10:10 +0000 Subject: [PATCH] Fix for Bug12202 TC: CRASH after import of "test18.med" file in MESH module. --- src/DriverMED/DriverMED_R_SMESHDS_Mesh.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DriverMED/DriverMED_R_SMESHDS_Mesh.cxx b/src/DriverMED/DriverMED_R_SMESHDS_Mesh.cxx index 6952acfd7..87f33c81c 100644 --- a/src/DriverMED/DriverMED_R_SMESHDS_Mesh.cxx +++ b/src/DriverMED/DriverMED_R_SMESHDS_Mesh.cxx @@ -124,8 +124,8 @@ DriverMED_R_SMESHDS_Mesh // Reading MED nodes to the corresponding SMDS structure //------------------------------------------------------ PNodeInfo aNodeInfo = aMed->GetPNodeInfo(aMeshInfo); - if ( !aNodeInfo ) - return DRS_FAIL; + if(!aNodeInfo) + continue; PCoordHelper aCoordHelper = GetCoordHelper(aNodeInfo); -- 2.39.2