diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-08 08:10:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-08 09:17:05 +0100 |
commit | a30d5cd97336fc8f953fa54f6bfa885b659199a8 (patch) | |
tree | 106e61921cd966558da6786df07c9f35a516a7f7 | |
parent | da3ddf32d35f78ce8c9dce2719692570bc5d6034 (diff) |
coverity#708008 Uninitialized scalar field
Change-Id: I425b1d822d98cbc28a1d99b41379b0dc5d8e6193
-rw-r--r-- | sc/source/core/data/table3.cxx | 3 |
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) { |