mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0026451: Crash importing STeP file
Add check for NULL. Test case for issue CR26451
This commit is contained in:
@@ -69,6 +69,8 @@ Handle(StepShape_Vertex) StepShape_OrientedEdge::EdgeStart() const
|
||||
{
|
||||
// WARNING : the field is redefined.
|
||||
// method body is not yet automaticly wrote
|
||||
if (edgeElement.IsNull())
|
||||
return NULL;
|
||||
if (Orientation()) {
|
||||
return edgeElement->EdgeStart();
|
||||
}
|
||||
@@ -88,7 +90,8 @@ Handle(StepShape_Vertex) StepShape_OrientedEdge::EdgeEnd() const
|
||||
{
|
||||
// WARNING : the field is redefined.
|
||||
// method body is not yet automaticly wrote
|
||||
|
||||
if (edgeElement.IsNull())
|
||||
return NULL;
|
||||
if (Orientation()) {
|
||||
return edgeElement->EdgeEnd();
|
||||
}
|
||||
|
Reference in New Issue
Block a user