From 6f42ada2e6eb530f66135ed8c9ccd467ce913479 Mon Sep 17 00:00:00 2001 From: jfa Date: Tue, 17 Oct 2023 10:06:58 +0100 Subject: [PATCH] Modeling - SIGSEGV BRepAdaptor_Curve2d and UnifySameDomain #372 SIGSEGV with MakeVertexInsideFace. Fixed exceptions with loading null curve and using out of range index. By K.Leontev. [bos #37951] --- src/BRepAdaptor/BRepAdaptor_Curve2d.cxx | 9 ++++++--- src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx | 10 +++++++++- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/BRepAdaptor/BRepAdaptor_Curve2d.cxx b/src/BRepAdaptor/BRepAdaptor_Curve2d.cxx index 4e698fd2c2..d50b0b3cd7 100644 --- a/src/BRepAdaptor/BRepAdaptor_Curve2d.cxx +++ b/src/BRepAdaptor/BRepAdaptor_Curve2d.cxx @@ -57,9 +57,12 @@ void BRepAdaptor_Curve2d::Initialize(const TopoDS_Edge& E, const TopoDS_Face& F) { myEdge = E; myFace = F; - Standard_Real pf, pl; - const Handle(Geom2d_Curve) PC = BRep_Tool::CurveOnSurface(E, F, pf, pl); - Geom2dAdaptor_Curve::Load(PC, pf, pl); + Standard_Real aFirs, aLast; + const Handle(Geom2d_Curve) aPCurve = BRep_Tool::CurveOnSurface(E, F, aFirs, aLast); + if (!aPCurve.IsNull()) + { + Geom2dAdaptor_Curve::Load(aPCurve, aFirs, aLast); + } } //================================================================================================= diff --git a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx b/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx index 9ecee9ae1c..679db8b99c 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx @@ -435,9 +435,17 @@ static Standard_Boolean FindCoordBounds(const TopTools_SequenceOfShape& theNumberOfIntervals = aPairSeq.Length(); if (aPairSeq.Length() == 2) + { theMinCoord = aPairSeq(2).first - thePeriod; - else + } + else if (aPairSeq.Length() > 0) + { theMinCoord = aPairSeq(1).first; + } + else + { + return Standard_False; + } theMaxCoord = aPairSeq(1).second; return Standard_True;