summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-01-31 20:27:59 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-01-31 21:27:24 -0600
commit80435fc469b3f897afdcc84e16b73997e1208f08 (patch)
tree8bf431fee997c74894f3722dd0c81f1fc2a54c01 /ucb
parent863e8cb0cfd0da5202b3f2f4cd9a72251a7b6e7a (diff)
coverity#984165 : Uninitialized scalar field
Change-Id: I9571b7f2dfabf1774acbf6b569aa1edc8fb6fda9
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/file/filrset.cxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/ucb/source/ucp/file/filrset.cxx b/ucb/source/ucp/file/filrset.cxx
index edf959a5a33a..da370c4b617c 100644
--- a/ucb/source/ucp/file/filrset.cxx
+++ b/ucb/source/ucp/file/filrset.cxx
@@ -41,27 +41,27 @@ using namespace com::sun::star;
#define THROW_WHERE ""
#endif
-XResultSet_impl::XResultSet_impl(
- shell* pMyShell,
- const OUString& aUnqPath,
- sal_Int32 OpenMode,
- const uno::Sequence< beans::Property >& seq,
- const uno::Sequence< ucb::NumberedSortingInfo >& seqSort )
- : m_pMyShell( pMyShell ),
- m_xProvider( pMyShell->m_pProvider ),
- m_nRow( -1 ),
- m_nOpenMode( OpenMode ),
- m_bRowCountFinal( false ),
- m_aBaseDirectory( aUnqPath ),
- m_aFolder( aUnqPath ),
- m_sProperty( seq ),
- m_sSortingInfo( seqSort ),
- m_pDisposeEventListeners( 0 ),
- m_pRowCountListeners( 0 ),
- m_pIsFinalListeners( 0 ),
- m_bStatic( false ),
- m_nErrorCode( TASKHANDLER_NO_ERROR ),
- m_nMinorErrorCode( TASKHANDLER_NO_ERROR )
+XResultSet_impl::XResultSet_impl( shell* pMyShell,
+ const OUString& aUnqPath,
+ sal_Int32 OpenMode,
+ const uno::Sequence< beans::Property >& seq,
+ const uno::Sequence< ucb::NumberedSortingInfo >& seqSort )
+ : m_pMyShell( pMyShell )
+ , m_xProvider( pMyShell->m_pProvider )
+ , m_nRow( -1 )
+ , m_nWasNull ( false )
+ , m_nOpenMode( OpenMode )
+ , m_bRowCountFinal( false )
+ , m_aBaseDirectory( aUnqPath )
+ , m_aFolder( aUnqPath )
+ , m_sProperty( seq )
+ , m_sSortingInfo( seqSort )
+ , m_pDisposeEventListeners( 0 )
+ , m_pRowCountListeners( 0 )
+ , m_pIsFinalListeners( 0 )
+ , m_bStatic( false )
+ , m_nErrorCode( TASKHANDLER_NO_ERROR )
+ , m_nMinorErrorCode( TASKHANDLER_NO_ERROR )
{
osl::FileBase::RC err = m_aFolder.open();
if( err != osl::FileBase::E_None )