diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-17 19:50:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 11:20:55 +0200 |
commit | e5e509551c229f242b3111d43887b22717846ccf (patch) | |
tree | 61df76a8fc2c77ebec2fb714d9a5c34c4f457336 /svtools | |
parent | fe9a87afbaf6e5db834580399e0ce6f912b993ac (diff) |
cid#1448313 Uninitialized pointer field
Change-Id: I0e449be3c0ae4cfef88766e189e7255ff45e83f9
Reviewed-on: https://gerrit.libreoffice.org/75800
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/valueacc.cxx | 1 |
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() { } |