summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-04 11:13:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-04 12:14:24 +0100
commitb7aee1d1ca712c720749e2b53cf0af80748d1a7e (patch)
tree398d10e4f81467089a859c0edac35b873cd80543
parent587668b75fafac50f352a5b4a86580fa1b3578d1 (diff)
coverity#708053 Uninitialized scalar field
Change-Id: I1bdba1a8c32a2b5e55f964113087b26b32002b94
-rw-r--r--sc/source/filter/lotus/tool.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/filter/lotus/tool.cxx b/sc/source/filter/lotus/tool.cxx
index 228f0fcac735..a1bdf41cd58a 100644
--- a/sc/source/filter/lotus/tool.cxx
+++ b/sc/source/filter/lotus/tool.cxx
@@ -165,6 +165,7 @@ double Snum32ToDouble( sal_uInt32 nValue )
}
FormCache::FormCache( ScDocument* pDoc1, sal_uInt8 nNewDefaultFormat )
+ : nIndex(0)
{ // Default-Format ist 'Default'
nDefaultFormat = nNewDefaultFormat;
pFormTable = pDoc1->GetFormatTable();