Kaydet (Commit) e2a13043 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#984079 Uninitialized scalar field

Change-Id: I48d4b4961b7ef287bec27551de6366a4bdf27ddd
üst 4a030f1b
......@@ -138,14 +138,15 @@ BaseResultSet::BaseResultSet(
sal_Int32 rowCount,
sal_Int32 colCount,
const Reference< com::sun::star::script::XTypeConverter > & tc )
: OComponentHelper( refMutex->mutex ),
OPropertySetHelper( OComponentHelper::rBHelper ),
m_owner( owner ),
m_tc( tc ),
m_refMutex( refMutex ),
m_row( -1 ),
m_rowCount( rowCount ),
m_fieldCount( colCount )
: OComponentHelper( refMutex->mutex )
, OPropertySetHelper( OComponentHelper::rBHelper )
, m_owner( owner )
, m_tc( tc )
, m_refMutex( refMutex )
, m_row( -1 )
, m_rowCount( rowCount )
, m_fieldCount( colCount )
, m_wasNull(false)
{
POSTGRE_TRACE( "ctor BaseResultSet" );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment