From cec90913e86ef8d4605eae6c0af428fcf9434207 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 1 Jun 2014 14:22:35 +0100 Subject: coverity#1219805 Uninitialized scalar field Change-Id: I1b4343f06118b352df8ceac0404b9ffff39e8b67 --- chart2/source/view/charttypes/GL3DBarChart.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chart2/source/view/charttypes/GL3DBarChart.cxx b/chart2/source/view/charttypes/GL3DBarChart.cxx index f2ec238627cc..334b74060860 100644 --- a/chart2/source/view/charttypes/GL3DBarChart.cxx +++ b/chart2/source/view/charttypes/GL3DBarChart.cxx @@ -34,6 +34,8 @@ GL3DBarChart::GL3DBarChart( mpTextCache(new opengl3D::TextCache()), mnStep(0), mnStepsTotal(0), + mnMaxX(0), + mnMaxY(0), mnCornerId(0), mbBlockUserInput(false), mbNeedsNewRender(true) -- cgit