[Libreoffice-commits] .: sc/source

Caolán McNamara caolan at kemper.freedesktop.org
Sat Apr 14 05:47:15 PDT 2012


 sc/source/core/data/dpitemdata.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 23067849649518210ee0fdf80fa4b05625f1e6bb
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Apr 14 13:46:07 2012 +0100

    valgrind: Conditional jump or move depends on uninitialised value
    
    in ScDPItemData::DisposeString

diff --git a/sc/source/core/data/dpitemdata.cxx b/sc/source/core/data/dpitemdata.cxx
index c6fc2dd..83ca357 100644
--- a/sc/source/core/data/dpitemdata.cxx
+++ b/sc/source/core/data/dpitemdata.cxx
@@ -125,7 +125,7 @@ ScDPItemData::ScDPItemData(const rtl::OUString* pStr) :
     mpString(pStr), meType(String), mbStringInterned(true) {}
 
 ScDPItemData::ScDPItemData(sal_Int32 nGroupType, sal_Int32 nValue) :
-    meType(GroupValue)
+    meType(GroupValue), mbStringInterned(false)
 {
     maGroupValue.mnGroupType = nGroupType;
     maGroupValue.mnValue = nValue;


More information about the Libreoffice-commits mailing list