diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 10:44:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:27 +0000 |
commit | 466e8bd416bfa1e64c36e12c44907bef1118f44d (patch) | |
tree | 315b86c55b583f358fd012efec80bae89bb30873 /forms | |
parent | 09f93567e92c9485bc802d02a3d20cd16fcebf60 (diff) |
coverity#738654 Uninitialized scalar field
Change-Id: I92909b606e06f3d86fc3b66aef1ac52e5d706967
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/ListBox.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index a09406ca411a..01b253e3230d 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -160,6 +160,7 @@ namespace frm ,OEntryListHelper( (OControlModel&)*this ) ,OErrorBroadcaster( OComponentHelper::rBHelper ) ,m_aListRowSet() + ,m_nConvertedBoundValuesType(0) ,m_nNULLPos(-1) ,m_nBoundColumnType( DataType::SQLNULL ) { @@ -182,6 +183,7 @@ namespace frm ,m_aBoundColumn( _pOriginal->m_aBoundColumn ) ,m_aListSourceValues( _pOriginal->m_aListSourceValues ) ,m_aBoundValues( _pOriginal->m_aBoundValues ) + ,m_nConvertedBoundValuesType(0) ,m_aDefaultSelectSeq( _pOriginal->m_aDefaultSelectSeq ) ,m_nNULLPos(-1) ,m_nBoundColumnType( DataType::SQLNULL ) |