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

0027541: ShapeFix_ComposeShell allows usage of uninitialized value of the field myInvertEdgeStatus

Initialize all fields of the class in the constructor.
This commit is contained in:
msv 2016-05-25 19:23:52 +03:00 committed by bugmaster
parent f2b6318110
commit a002d297f7

View File

@ -84,7 +84,16 @@ IMPLEMENT_STANDARD_RTTIEXT(ShapeFix_ComposeShell,ShapeFix_Root)
//purpose :
//=======================================================================
ShapeFix_ComposeShell::ShapeFix_ComposeShell () :
myStatus(0), myClosedMode(Standard_False)
myOrient(TopAbs_FORWARD),
myStatus(0),
myUResolution(RealLast()),
myVResolution(RealLast()),
myInvertEdgeStatus(Standard_True),
myClosedMode(Standard_False),
myUClosed(Standard_False),
myVClosed(Standard_False),
myUPeriod(0.),
myVPeriod(0.)
{
myTransferParamTool = new ShapeAnalysis_TransferParametersProj;
}