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

0029650: Data Exchange - possible exception in shape tool

This commit is contained in:
ika 2018-03-27 11:17:54 +03:00 committed by bugmaster
parent f0bef12142
commit a38b44f172

View File

@ -1038,8 +1038,10 @@ Standard_Boolean XCAFDoc_ShapeTool::IsSubShape (const TDF_Label &shapeL,
Handle(XCAFDoc_ShapeMapTool) A;
if (!shapeL.FindAttribute(XCAFDoc_ShapeMapTool::GetID(), A))
{
A = XCAFDoc_ShapeMapTool::Set(shapeL);
TopoDS_Shape aShape = GetShape(shapeL);
if (aShape.IsNull())
return Standard_False;
A = XCAFDoc_ShapeMapTool::Set(shapeL);
A->SetShape(aShape);
}