mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +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:
parent
43d3f6d8d8
commit
320a322080
@ -2459,7 +2459,12 @@ Standard_Boolean ShapeFix_Face::FixSplitFace(const TopTools_DataMapOfShapeListOf
|
|||||||
for(Standard_Integer i=1; i<=faces.Length(); i++ )
|
for(Standard_Integer i=1; i<=faces.Length(); i++ )
|
||||||
B.Add(Comp,faces(i));
|
B.Add(Comp,faces(i));
|
||||||
myResult = Comp;
|
myResult = Comp;
|
||||||
Context()->Replace ( myFace, myResult );
|
|
||||||
|
if(!Context().IsNull())
|
||||||
|
{
|
||||||
|
Context()->Replace ( myFace, myResult );
|
||||||
|
}
|
||||||
|
|
||||||
for (TopExp_Explorer exp ( myResult, TopAbs_FACE ); exp.More(); exp.Next() ) {
|
for (TopExp_Explorer exp ( myResult, TopAbs_FACE ); exp.More(); exp.Next() ) {
|
||||||
myFace = TopoDS::Face ( exp.Current() );
|
myFace = TopoDS::Face ( exp.Current() );
|
||||||
BRepTools::Update(myFace);
|
BRepTools::Update(myFace);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user