summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-25 08:45:49 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-26 09:48:13 +0000
commitfaace681fc6575dd8a16b0c8fead3ea7f0b93fe3 (patch)
treeba5af0764698e1b22c8691c90ec78a48ff612477
parentcc5ceadf55b6f20575e819f6c5be6720093811ed (diff)
coverity#1260446 Uninitialized scalar field
and coverity#1260447 Uninitialized scalar field Change-Id: I3aa5a1caf776fddc8b6029e96c24aa86b21de880
-rw-r--r--sc/source/core/tool/scmatrix.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index af573846d1c3..7901dfe4c4b6 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -1908,6 +1908,7 @@ public:
wrapped_iterator(typename T::const_iterator it_, U aOp):
it(it_),
+ val(value_type()),
maOp(aOp)
{
}