summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-11-02 15:18:15 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-11-02 18:38:55 +0100
commit8fb538f719eb27c2f8a533aee731cf2897580631 (patch)
treeff82b32f1c0c49459d0b1b61dc538092e809d110 /sc/source
parentda90b1d02f603b1dcdfc7a4d2ef33fc966f6893a (diff)
cid#1455214 Uninitialized scalar variable
Change-Id: I90ef15645eaa70a166aa1940b1b296c299aee0e2 Reviewed-on: https://gerrit.libreoffice.org/81939 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/rtf/eeimpars.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/rtf/eeimpars.cxx b/sc/source/filter/rtf/eeimpars.cxx
index 49acd09a3475..368c99fa3bd6 100644
--- a/sc/source/filter/rtf/eeimpars.cxx
+++ b/sc/source/filter/rtf/eeimpars.cxx
@@ -200,7 +200,7 @@ void ScEEImport::WriteToDocument( bool bSizeColsRows, double nOutputFactor, SvNu
// HTML
OUString aValStr, aNumStr;
- double fVal;
+ double fVal = 0.0;
sal_uInt32 nNumForm = 0;
LanguageType eNumLang = LANGUAGE_NONE;
if ( pE->pNumStr )