From 7dc9a40776f727dcd196e21677419945612b2465 Mon Sep 17 00:00:00 2001 From: pdn Date: Mon, 22 Sep 2014 19:56:36 +0400 Subject: [PATCH] 0025258: Uninitialized class field in IntPatch_CSFunction Field f is initialized by zero --- src/IntPatch/IntPatch_CSFunction.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IntPatch/IntPatch_CSFunction.cxx b/src/IntPatch/IntPatch_CSFunction.cxx index f8e540b484..d8b5194e9a 100644 --- a/src/IntPatch/IntPatch_CSFunction.cxx +++ b/src/IntPatch/IntPatch_CSFunction.cxx @@ -41,6 +41,7 @@ IntPatch_CSFunction::IntPatch_CSFunction(const Handle(Adaptor3d_HSurface)& S1, surface1 = (Standard_Address)(&S1); surface2 = (Standard_Address)(&S2); curve = (Standard_Address)(&C); + f = 0.; } Standard_Integer IntPatch_CSFunction::NbVariables()const { return 3;} -- 2.39.5