diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:21:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:30 +0000 |
commit | b9179d8798aedea2f7dc5d93d966028fb3dbde14 (patch) | |
tree | 83acfb8e81e7dddd94ac09b014e05d716f8e3403 /dbaccess | |
parent | 649bb48e2a55ce51cfcb51687da3136d5b130043 (diff) |
coverity#738612 Uninitialized scalar field
Change-Id: I6d2ffdfe3a4e70c6588988be9026e28411ee273a
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/resultset.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/resultset.cxx b/dbaccess/source/core/api/resultset.cxx index 9e9cb593b4b9..b7195abb171a 100644 --- a/dbaccess/source/core/api/resultset.cxx +++ b/dbaccess/source/core/api/resultset.cxx @@ -56,6 +56,8 @@ OResultSet::OResultSet(const ::com::sun::star::uno::Reference< ::com::sun::star: ,OPropertySetHelper(OResultSetBase::rBHelper) ,m_xDelegatorResultSet(_xResultSet) ,m_aWarnings( Reference< XWarningsSupplier >( _xResultSet, UNO_QUERY ) ) + ,m_nResultSetType(0) + ,m_nResultSetConcurrency(0) ,m_bIsBookmarkable(sal_False) { SAL_INFO("dbaccess", "OResultSet::OResultSet" ); @@ -86,7 +88,7 @@ OResultSet::OResultSet(const ::com::sun::star::uno::Reference< ::com::sun::star: } } } - catch(Exception&) + catch (const Exception&) { } } |