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

Stephan Bergmann sbergman at redhat.com
Wed May 20 08:27:21 PDT 2015


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

New commits:
commit 186b1e00017c163fdef5e8ceb1221c2d416b32cf
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed May 20 17:26:19 2015 +0200

    ScIconSetFormatData::mbCustom read uninitialized...
    
    ...in ScIconSetFormat::GetIconSetInfo, e.g. during CppunitTest_sc_ucalc
    
    Change-Id: Ia4380110cafdb0f220b99a8e1aeb5c3efde60d7f

diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index 6a2115f..423d1fa 100644
--- a/sc/inc/colorscale.hxx
+++ b/sc/inc/colorscale.hxx
@@ -349,7 +349,8 @@ struct ScIconSetFormatData
     ScIconSetFormatData():
         eIconSetType(IconSet_3Arrows),
         mbShowValue(true),
-        mbReverse(false)
+        mbReverse(false),
+        mbCustom(false)
         {}
 };
 


More information about the Libreoffice-commits mailing list