From: mbs Date: Wed, 12 Apr 2023 16:51:04 +0000 (+0100) Subject: Fixed bos#34419 - class member was not initialized X-Git-Tag: V9_11_0a1~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ddba4567471480cd43b3f2731ede2db3e7b61bf0;p=modules%2Fgeom.git Fixed bos#34419 - class member was not initialized --- diff --git a/src/OCC2VTK/GEOM_EdgeSource.cxx b/src/OCC2VTK/GEOM_EdgeSource.cxx index 06a1f68f9..df75c684f 100644 --- a/src/OCC2VTK/GEOM_EdgeSource.cxx +++ b/src/OCC2VTK/GEOM_EdgeSource.cxx @@ -40,7 +40,8 @@ vtkStandardNewMacro(GEOM_EdgeSource) GEOM_EdgeSource::GEOM_EdgeSource() : - myIsVector(false) + myIsVector(false), + myIsVectorMode(false) { this->SetNumberOfInputPorts(0); }