[Libreoffice-commits] core.git: sc/source

Caolán McNamara caolanm at redhat.com
Sun Jan 28 13:26:10 UTC 2018


 sc/source/ui/inc/imoptdlg.hxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 2f564d09c5d3aff0767f3c3f3e525cf34076cff3
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sun Jan 28 13:24:22 2018 +0000

    coverity#1428661 Uninitialized scalar field
    
    Change-Id: Ie0578786fdd167e1ec8dd581f656bfcbbb3c2a58

diff --git a/sc/source/ui/inc/imoptdlg.hxx b/sc/source/ui/inc/imoptdlg.hxx
index 8722b6b3466f..4bdbbbb0750f 100644
--- a/sc/source/ui/inc/imoptdlg.hxx
+++ b/sc/source/ui/inc/imoptdlg.hxx
@@ -36,7 +36,8 @@ public:
 
         ScImportOptions( sal_Unicode nFieldSep, sal_Unicode nTextSep, rtl_TextEncoding nEnc )
             : nFieldSepCode(nFieldSep), nTextSepCode(nTextSep),
-            bFixedWidth(false), bSaveAsShown(false), bQuoteAllText(false), bSaveFormulas(false)
+            bFixedWidth(false), bSaveAsShown(false), bQuoteAllText(false), bSaveFormulas(false),
+            bRemoveSpace(false)
         { SetTextEncoding( nEnc ); }
 
     ScImportOptions& operator=( const ScImportOptions& rCpy )


More information about the Libreoffice-commits mailing list