summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-17 19:50:46 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2019-07-18 10:28:03 +0200
commit7fd9d3e45a64495c99beb21f0ac0f7d2c16382cb (patch)
treec684e88b0125e56caaf25d3646da9fe3bfdcd6a0
parent0de6b4b3ae8ed47fb21ed58e66a2753d4989a0d7 (diff)
cid#1448313 Uninitialized pointer field
Change-Id: I0e449be3c0ae4cfef88766e189e7255ff45e83f9 Reviewed-on: https://gerrit.libreoffice.org/75806 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
-rw-r--r--svtools/source/control/valueacc.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/control/valueacc.cxx b/svtools/source/control/valueacc.cxx
index 1033fa1c52fd..c4f333f9b9c4 100644
--- a/svtools/source/control/valueacc.cxx
+++ b/svtools/source/control/valueacc.cxx
@@ -68,6 +68,7 @@ SvtValueSetItem::SvtValueSetItem( SvtValueSet& rParent )
, mnId(0)
, meType(VALUESETITEM_NONE)
, mbVisible(true)
+ , mpData(nullptr)
, mxAcc()
{
}