From a002d297f7c4ff95e0cabfa5622d2477b6c97edc Mon Sep 17 00:00:00 2001 From: msv Date: Wed, 25 May 2016 19:23:52 +0300 Subject: [PATCH] 0027541: ShapeFix_ComposeShell allows usage of uninitialized value of the field myInvertEdgeStatus Initialize all fields of the class in the constructor. --- src/ShapeFix/ShapeFix_ComposeShell.cxx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/ShapeFix/ShapeFix_ComposeShell.cxx b/src/ShapeFix/ShapeFix_ComposeShell.cxx index 276aa590d5..230e14066b 100644 --- a/src/ShapeFix/ShapeFix_ComposeShell.cxx +++ b/src/ShapeFix/ShapeFix_ComposeShell.cxx @@ -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; }