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

Norbert Thiebaud nthiebaud at gmail.com
Mon May 13 17:08:59 PDT 2013


 sc/source/core/tool/stringutil.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit e7a41314081de30d3b542b88848808de1a43775e
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Mon May 13 17:57:20 2013 -0500

    coverity#1000855 Unitialized scalar variable
    
    Change-Id: I2bece68ed33f3aa193a30d9686ba81d21c7ec55e
    Reviewed-on: https://gerrit.libreoffice.org/3896
    Reviewed-by: Kohei Yoshida <kohei.yoshida at suse.de>
    Tested-by: Kohei Yoshida <kohei.yoshida at suse.de>

diff --git a/sc/source/core/tool/stringutil.cxx b/sc/source/core/tool/stringutil.cxx
index ac2ec76..fcaae9d 100644
--- a/sc/source/core/tool/stringutil.cxx
+++ b/sc/source/core/tool/stringutil.cxx
@@ -341,6 +341,7 @@ ScInputStringType ScStringUtil::parseInputString(
     aRet.mnFormatType = 0;
     aRet.meType = ScInputStringType::Unknown;
     aRet.maText = rStr;
+    aRet.mfValue = 0.0;
 
     if (rStr.getLength() > 1 && rStr[0] == '=')
     {


More information about the Libreoffice-commits mailing list