1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0033307: Data Exchange, Step Import - Crash after reading empty edge loop

Fixed problem with empty edge list in the edge loop, mark as a fail entity in this case
This commit is contained in:
dpasukhi 2023-01-11 11:29:08 +00:00 committed by vglukhik
parent 14b64f123d
commit 4f833b7d13
2 changed files with 16 additions and 0 deletions

View File

@ -106,6 +106,11 @@ void RWStepShape_RWEdgeLoop::Check
Standard_Boolean headToTail = Standard_True;
//Standard_Boolean noIdentVtx = Standard_True; //szv#4:S4163:12Mar99 unused
Standard_Integer nbEdg = ent->NbEdgeList();
if (nbEdg == 0)
{
ach->AddFail("Edge loop contains empty edge list");
return;
}
Handle(StepShape_OrientedEdge) theOE = ent->EdgeListValue(1);
Handle(StepShape_Vertex) theVxFrst = theOE->EdgeStart();
Handle(StepShape_Vertex) theVxLst = theOE->EdgeEnd();

11
tests/bugs/step/bug33307 Normal file
View File

@ -0,0 +1,11 @@
puts "==================================================="
puts "0033307: Data Exchange, Step Import - Crash after reading empty edge loop"
puts "==================================================="
puts ""
pload XDE OCAF
Close D -silent
ReadStep D [locate_data_file "bug33307.stp"]
Close D