summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-09-08 08:10:32 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-09-08 09:17:05 +0100
commita30d5cd97336fc8f953fa54f6bfa885b659199a8 (patch)
tree106e61921cd966558da6786df07c9f35a516a7f7 /sc/source
parentda3ddf32d35f78ce8c9dce2719692570bc5d6034 (diff)
coverity#708008 Uninitialized scalar field
Change-Id: I425b1d822d98cbc28a1d99b41379b0dc5d8e6193
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/data/table3.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index 2bfa71ef51dc..2b3294fca52a 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -269,7 +269,8 @@ public:
nCount( nInd2 - nInd1 + 1 ), nStart( nInd1 ),
mnLastIndex(nInd2),
nUsedSorts(nSorts),
- mbKeepQuery(false)
+ mbKeepQuery(false),
+ mbUpdateRefs(false)
{
if (nUsedSorts)
{