diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:00:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:39:30 +0100 |
commit | d1324645f57d567c2a79e4fea95b79a36caa3a93 (patch) | |
tree | 13b983824f515bb07e18066f753ef3ef7e5b7373 /sc | |
parent | f6b53bb08e5c5ebdf20c2312ab067598bcd13f4c (diff) |
coverity#1210198 Uninitialized pointer field
Change-Id: If72fff8b6cc7e5e55e1f395ddc34b4c5810faff3
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/dbgui/validate.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/ui/dbgui/validate.cxx b/sc/source/ui/dbgui/validate.cxx index a89fa8131661..6a93378d5c17 100644 --- a/sc/source/ui/dbgui/validate.cxx +++ b/sc/source/ui/dbgui/validate.cxx @@ -317,6 +317,7 @@ ScTPValidationValue::ScTPValidationValue( Window* pParent, const SfxItemSet& rAr , maStrValue(ScResId(SCSTR_VALID_VALUE)) , maStrRange(ScResId(SCSTR_VALID_RANGE)) , maStrList(ScResId(SCSTR_VALID_LIST)) + , m_pRefEdit(NULL) { get(m_pLbAllow, "allow"); get(m_pCbAllow, "allowempty"); |