summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-01 14:22:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-02 16:59:56 +0100
commitcec90913e86ef8d4605eae6c0af428fcf9434207 (patch)
treea99529f820913351480a359a56a58a96755905fb
parente2cb56e852de6e5d4d43e9d2cf205ee8ba449cbf (diff)
coverity#1219805 Uninitialized scalar field
Change-Id: I1b4343f06118b352df8ceac0404b9ffff39e8b67
-rw-r--r--chart2/source/view/charttypes/GL3DBarChart.cxx2
1 files changed, 2 insertions, 0 deletions
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)