Skip to content
Snippets Groups Projects
Commit 05f21eba authored by Ben Boeckel's avatar Ben Boeckel Committed by Kitware Robot
Browse files

Merge topic 'cellmap-uninitialized-variable-paraview-release' into paraview/release


3070061e vtkOpenGLCellToVTKCellMap: initialize array before use

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !6521
parents 10bbe964 3070061e
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,11 @@ vtkOpenGLCellToVTKCellMap::vtkOpenGLCellToVTKCellMap() ...@@ -29,6 +29,11 @@ vtkOpenGLCellToVTKCellMap::vtkOpenGLCellToVTKCellMap()
this->PrimitiveOffsets[1] = 0; this->PrimitiveOffsets[1] = 0;
this->PrimitiveOffsets[2] = 0; this->PrimitiveOffsets[2] = 0;
this->PrimitiveOffsets[3] = 0; this->PrimitiveOffsets[3] = 0;
this->CellMapSizes[0] = 0;
this->CellMapSizes[1] = 0;
this->CellMapSizes[2] = 0;
this->CellMapSizes[3] = 0;
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment