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

0024236: Eliminate GCC compiler warning (uninitialized variables)

This commit is contained in:
ski 2013-10-10 14:47:21 +04:00 committed by bugmaster
parent 012d92b631
commit d20d815bbe
16 changed files with 18 additions and 17 deletions

View File

@ -237,7 +237,7 @@ static void Locate1Coord(const Standard_Integer Index,
const Handle(Geom_BSplineCurve)& BSplC,
gp_Pnt2d& LeftBot, gp_Pnt2d& RightTop)
{
Standard_Real Comp1=0, DComp1=0, cur, f, l;
Standard_Real Comp1=0, DComp1=0, cur, f = 0.0, l = 0.0;
Standard_Real Tol = Precision::PConfusion()/10;
Standard_Integer i = 1, Bnd1, Bnd2;
Standard_Boolean DIsNull= Standard_False;
@ -616,7 +616,7 @@ static void Locate2Coord(const Standard_Integer Index,
const TColStd_Array1OfReal& Arr,
gp_Pnt2d& LeftBot, gp_Pnt2d& RightTop)
{
Standard_Real Comp=0,DComp=0,Tmp1,Tmp2;
Standard_Real Comp=0,DComp=0,Tmp1=0.0,Tmp2=0.0;
Standard_Real Tol=Precision::PConfusion()/10;
Standard_Integer N, NUp=0, NLo=0;
if(Index==1)

View File

@ -377,7 +377,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
//Control tangents at the extremities to know if the
//reparametring is possible and calculate the tangents
//at the extremities of the function of change of variable.
Standard_Real tangent[2];
Standard_Real tangent[2] = { 0.0, 0.0 };
gp_Pnt Pcons,Pc3d;
gp_Vec Vcons,Vc3d;

View File

@ -1044,7 +1044,7 @@ void ChFi3d_Builder::PerformMoreThreeCorner(const Standard_Integer Jndex,
TopoDS_Face face;
Standard_Integer jfp = 0,ii;
Standard_Integer ic,icplus,icmoins,icplus2,
sense,index,indice,isurf1,isurf2;
sense,index = 0,indice,isurf1,isurf2;
Standard_Integer cbplus=0, n3d=0,IVtx = 0,nb;
Standard_Boolean sameside,trouve,isfirst;
Standard_Real pardeb ,parfin,xdir,ydir;

View File

@ -1927,7 +1927,7 @@ void ChFi3d_ChBuilder::ExtentTwoCorner(const TopoDS_Vertex& V,
Handle(ChFiDS_ChamfSpine) chsp[2];
Standard_Real d[4], dis[2];
Standard_Real d[4], dis[2] = { 0.0, 0.0 };
Standard_Integer j;
TopoDS_Face F[4];
Standard_Real tmpang, tmd;

View File

@ -265,7 +265,7 @@ Standard_Boolean ChFiDS_FilSpine::IsConstant(const Standard_Integer IE)const
Standard_Real Uf = FirstParameter(IE);
Standard_Real Ul = LastParameter(IE);
Standard_Real StartRad, par, rad;
Standard_Real StartRad = 0.0, par, rad;
Standard_Integer i;
for (i = 1; i < parandrad.Length(); i++)
{

View File

@ -86,7 +86,7 @@ static void PutPointsOnLine (const Contap_TheSearch& solrst,
gp_Pnt ptonsurf;
gp_Vec vectg,normale,tgtrst;
Standard_Real paramlin;
Standard_Real paramlin = 0.0;
Standard_Integer nbLin = slin.Length();

View File

@ -591,7 +591,7 @@ gp_Pnt2d Graphic3d_ArrayOfPrimitives::VertexTexel(const Standard_Integer aRank)
Quantity_Color Graphic3d_ArrayOfPrimitives::BoundColor(const Standard_Integer aRank) const
{
Standard_Real r,g,b;
Standard_Real r = 0.0, g = 0.0, b = 0.0;
BoundColor(aRank,r,g,b);
return Quantity_Color(r,g,b,Quantity_TOC_RGB);
}

View File

@ -3124,7 +3124,7 @@ void IntPatch_PrmPrmIntersection::PointDepart(Handle(IntSurf_LineOn2S)& LineOn2S
//-- aucun point du triangle n a ete trouve assez proche
//-- on recherche les 3 points les plus proches de P
//-- dans chacun des tableaux
Standard_Real Dist3[3],u3[3],v3[3];
Standard_Real Dist3[3],u3[3] = { 0.0, 0.0, 0.0 },v3[3] = { 0.0, 0.0, 0.0 };
Dist3[0]=Dist3[1]=Dist3[2]=RealLast();
for(U=resu0,i=0; i<SU1; i++,U+=du1) {
for(V=resv0,j=0; j<SV1; V+=dv1,j++) {

View File

@ -810,7 +810,7 @@ void Intf_InterferencePolygonPolyhedron::Intersect
}
if(NoIntersectionWithTriangle == Standard_False) {
gp_XYZ spLieu=BegO.XYZ()+((EndO.XYZ()-BegO.XYZ())*param);
Standard_Real dPiE[3], dPtPi[3], sigd;
Standard_Real dPiE[3] = { 0.0, 0.0, 0.0 }, dPtPi[3], sigd;
Standard_Integer is = 0;
Standard_Integer sEdge=-1;
Standard_Integer sVertex=-1;
@ -1092,7 +1092,7 @@ void Intf_InterferencePolygonPolyhedron::Intersect (const gp_Pnt& BegO,
}
if(NoIntersectionWithTriangle == Standard_False) {
gp_XYZ spLieu=BegO.XYZ()+((EndO.XYZ()-BegO.XYZ())*param);
Standard_Real dPiE[3], dPtPi[3], sigd;
Standard_Real dPiE[3] = { 0.0, 0.0, 0.0 }, dPtPi[3], sigd;
Standard_Integer is = 0;
Standard_Integer sEdge=-1;
Standard_Integer sVertex=-1;

View File

@ -187,6 +187,7 @@ void OpenGl_View::SetLights (const CALL_DEF_VIEWCONTEXT &AContext)
for ( ; i < nb_lights; i++, alight++ )
{
OpenGl_Light rep;
memset(&rep,0,sizeof(rep));
switch( alight->LightType )
{

View File

@ -467,7 +467,7 @@ void ProjLib_ProjectedCurve::Load(const Handle(Adaptor3d_HCurve)& C)
default:
{
Standard_Boolean IsTrimmed[2] = {Standard_False, Standard_False};
Standard_Real Vsingular[2]; //for surfaces of revolution
Standard_Real Vsingular[2] = { 0.0 , 0.0 }; //for surfaces of revolution
Standard_Real f = 0., l = 0., dt = 0.;
const Standard_Real eps = 0.01;

View File

@ -1366,7 +1366,7 @@ QANewModTopOpe_Glue::SectionInsideFace(const TopoDS_Face& theFace,
TopoDS_Edge aEdge;
TopoDS_Vertex aVer;
Standard_Real aPar, aDist;
Standard_Real aPar=0.0, aDist;
if (IsVertexOnFaceBound (aSVer, aFace1, aEdge, aVer, aPar, aDist)) {
// aSVer contacts aFace's boundary

View File

@ -1351,7 +1351,7 @@ Handle(Geom_Curve) ShapeConstruct_ProjectCurveOnSurface::InterpolateCurve3d(cons
gp_Pnt pt;
Standard_Integer mpt[2]; mpt[0] = mpt[1] = 0;
Standard_Real t, tpar[2], isoValue=0.;
Standard_Real t, tpar[2] = { 0.0, 0.0 }, isoValue=0.;
Standard_Real mindist2;
Standard_Real mind2[2];
mindist2 = mind2[0] = mind2[1] = 4*prec*prec;

View File

@ -333,7 +333,7 @@ static Standard_Boolean FUN_GeomTrans(const Handle(Geom_Surface)& S1,
gp_Pnt P1; gp_Vec D1_C1; C1->D1(T1,P1,D1_C1);
// D1_C2 : D1(C2(P1))
Standard_Real T2;
Standard_Real T2 = 0.0;
Standard_Boolean projok = ::FUN_ProjectPoint(P1,C2,FC2,LC2,T2);
if ( !projok ) {
return Standard_False;

View File

@ -176,7 +176,7 @@ void TopOpeBRepDS_Edge3dInterferenceTool::Init
myTole = Precision::Angular(); // NYI
Standard_Real pref; Standard_Boolean ok = ::FUN_hasparam(I, pref);
Standard_Real pref=0.0; Standard_Boolean ok = ::FUN_hasparam(I, pref);
if (!ok) {FUN_Raise(); return;}
// <myP3d> :
{

View File

@ -91,7 +91,7 @@ Standard_EXPORT Standard_Boolean FUN_HDS_FACESINTERFER
TopOpeBRepDS_ListIteratorOfListOfInterference itL1(L1);
for (;itL1.More(); itL1.Next()) {
const Handle(TopOpeBRepDS_Interference)& I = itL1.Value();
TopOpeBRepDS_Kind GT,ST;Standard_Integer G,S;
TopOpeBRepDS_Kind GT = TopOpeBRepDS_UNKNOWN, ST = TopOpeBRepDS_UNKNOWN; Standard_Integer G,S = 0;
FUN_HDS_data(I,GT,G,ST,S);
// interference face1/edge/face2
Standard_Boolean fef = Standard_True;