summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-15 14:34:19 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-15 20:55:51 +0000
commit8967b65be87dc3ee19726284394a996128b46cfb (patch)
treec655a805524c08cbc98a09fc4cf903f4599d6c88
parent52e8018846e1ddda94cfc8681b5d86c1d8815056 (diff)
coverity#1000861 Uninitialized pointer field
Change-Id: I343ae6fde04e2ad937499909f5b5da221d1d12d5
-rw-r--r--dbaccess/source/core/api/RowSetBase.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/dbaccess/source/core/api/RowSetBase.cxx b/dbaccess/source/core/api/RowSetBase.cxx
index bef066f826d1..ee45318ba789 100644
--- a/dbaccess/source/core/api/RowSetBase.cxx
+++ b/dbaccess/source/core/api/RowSetBase.cxx
@@ -77,6 +77,7 @@ connectivity::sdbcx::ObjectType OEmptyCollection::createObject(const OUString& /
ORowSetBase::ORowSetBase( const Reference<XComponentContext>& _rContext, ::cppu::OBroadcastHelper& _rBHelper, ::osl::Mutex* _pMutex )
:OPropertyStateContainer(_rBHelper)
,m_pMutex(_pMutex)
+ ,m_pMySelf(NULL)
,m_pCache(NULL)
,m_pColumns(NULL)
,m_rBHelper(_rBHelper)