summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-10-16 20:30:18 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-10-17 14:46:25 +0100
commitfdf9fa4fd2e3b64e2392b6743b7ff76f445b0880 (patch)
treec5c1352958a00ae092751e1eee64054fea69e5d0 /extensions
parentf03c0930e286fb6d608ce65f8eaaa5053f4ae924 (diff)
coverity#1327456 Uninitialized pointer field
Change-Id: I0d116989bdbda07995cca1c8062ea5b0c4292b28
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/standardcontrol.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx
index 6d6265294d7b..3910f39e4d1b 100644
--- a/extensions/source/propctrlr/standardcontrol.cxx
+++ b/extensions/source/propctrlr/standardcontrol.cxx
@@ -1034,7 +1034,8 @@ namespace pcr
,m_pFloatingEdit( NULL )
,m_pDropdownButton( NULL )
,m_nOperationMode( eStringList )
- ,m_bDropdown( false )
+ ,m_bDropdown(false)
+ ,m_pHelper(nullptr)
{
SetCompoundControl( true );