From 466e8bd416bfa1e64c36e12c44907bef1118f44d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 21 Feb 2014 10:44:26 +0000 Subject: coverity#738654 Uninitialized scalar field Change-Id: I92909b606e06f3d86fc3b66aef1ac52e5d706967 --- forms/source/component/ListBox.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'forms') 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 ) -- cgit