diff --git a/src/StepToGeom/StepToGeom.cxx b/src/StepToGeom/StepToGeom.cxx index 084531d8f0..e15afe880d 100644 --- a/src/StepToGeom/StepToGeom.cxx +++ b/src/StepToGeom/StepToGeom.cxx @@ -1008,7 +1008,7 @@ Handle(Geom_BSplineSurface) StepToGeom::MakeBSplineSurface (const Handle(StepGeo Handle(Geom_CartesianPoint) StepToGeom::MakeCartesianPoint (const Handle(StepGeom_CartesianPoint)& SP, const StepData_Factors& theLocalFactors) { - if (SP->NbCoordinates() == 3) + if (!SP.IsNull() && SP->NbCoordinates() == 3) { const Standard_Real LF = theLocalFactors.LengthFactor(); const Standard_Real X = SP->CoordinatesValue(1) * LF; diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx b/src/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx index b9ae793360..793063c6c4 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx @@ -96,6 +96,11 @@ void StepToTopoDS_TranslateVertex::Init(const Handle(StepShape_Vertex)& aVertex, //:S4136 Standard_Real preci = BRepAPI::Precision(); const Handle(StepShape_VertexPoint) VP = Handle(StepShape_VertexPoint)::DownCast(aVertex); const Handle(StepGeom_Point) P = VP->VertexGeometry(); + if (P.IsNull()) { + myError = StepToTopoDS_TranslateVertexOther; + done = Standard_False; + return; + } const Handle(StepGeom_CartesianPoint) P1 = Handle(StepGeom_CartesianPoint)::DownCast(P); Handle(Geom_CartesianPoint) P2 = StepToGeom::MakeCartesianPoint (P1, theLocalFactors); BRep_Builder B;