1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026524: ShapeFix_Face crash when performing fix on an invalid face.

Check that method Context() returns not null handle was added.
This commit is contained in:
gka 2016-10-26 19:31:49 +03:00 committed by apn
parent 43d3f6d8d8
commit 320a322080

View File

@ -2459,7 +2459,12 @@ Standard_Boolean ShapeFix_Face::FixSplitFace(const TopTools_DataMapOfShapeListOf
for(Standard_Integer i=1; i<=faces.Length(); i++ )
B.Add(Comp,faces(i));
myResult = Comp;
Context()->Replace ( myFace, myResult );
if(!Context().IsNull())
{
Context()->Replace ( myFace, myResult );
}
for (TopExp_Explorer exp ( myResult, TopAbs_FACE ); exp.More(); exp.Next() ) {
myFace = TopoDS::Face ( exp.Current() );
BRepTools::Update(myFace);