diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 17:08:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 17:17:54 +0100 |
commit | d74722faf277e293b102e63a0acf151fa4fe1536 (patch) | |
tree | 55026abc196a91afc5989ed5ef9dd632853ef3bb /sc/source | |
parent | 3f71b92ff1de1c614193832b291339a3e2f2c4a4 (diff) |
coverity#1210164 Uninitialized scalar variable
Change-Id: I0b57ff0ea059e924f6508da5f76b5e8e7ed8cbf3
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/qpro/qproform.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/filter/qpro/qproform.cxx b/sc/source/filter/qpro/qproform.cxx index a61d0882f74e..b66665095960 100644 --- a/sc/source/filter/qpro/qproform.cxx +++ b/sc/source/filter/qpro/qproform.cxx @@ -181,7 +181,8 @@ ConvErr QProToSc::Convert( const ScTokenArray*& pArray, sal_uInt16 /*nLen*/, con sal_uInt16 nInt, nIntCount = 0, nStringCount = 0, nFloatCount = 0, nDLLCount = 0, nArgCount = 0; sal_uInt16 nIntArray[ nBufSize ] = {0}; OUString sStringArray[ nBufSize ]; - sal_uInt16 nDummy, nDLLId, nDLLArray[ nBufSize ]; + sal_uInt16 nDummy, nDLLId; + sal_uInt16 nDLLArray[ nBufSize ] = {0}; sal_uInt16 nNote, nRef, nRelBits; TokenId nPush; ScComplexRefData aCRD; |