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

New commits:
commit 186b1e00017c163fdef5e8ceb1221c2d416b32cf
Author: Stephan Bergmann <sberg...@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)
         {}
 };
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to