diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-20 13:57:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-21 11:59:06 +0200 |
commit | e0e370a13d5bd90a25ceb0930539e27bdbb28a5f (patch) | |
tree | 7e7761afc9d31c32053d1e9534a191c217fec926 /dbaccess | |
parent | 5fbb16410079b67693d7087726cde5a135b67524 (diff) |
cid#707727 Uninitialized pointer field
resolved by removing the field, since it is unused
Change-Id: Ia543877ee645023bf6e1ee3c4f396cb082517f82
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/TableDeco.cxx | 1 | ||||
-rw-r--r-- | dbaccess/source/core/inc/TableDeco.hxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/dbaccess/source/core/api/TableDeco.cxx b/dbaccess/source/core/api/TableDeco.cxx index 8f9ae648324a..4156552ddfa3 100644 --- a/dbaccess/source/core/api/TableDeco.cxx +++ b/dbaccess/source/core/api/TableDeco.cxx @@ -106,7 +106,6 @@ void SAL_CALL ODBTableDecorator::disposing() MutexGuard aGuard(m_aMutex); m_xTable = NULL; m_xMetaData = NULL; - m_pTables = NULL; m_xColumnDefinitions = NULL; m_xNumberFormats = NULL; if ( m_pColumns ) diff --git a/dbaccess/source/core/inc/TableDeco.hxx b/dbaccess/source/core/inc/TableDeco.hxx index 664312a4a7e5..5af0391cfbba 100644 --- a/dbaccess/source/core/inc/TableDeco.hxx +++ b/dbaccess/source/core/inc/TableDeco.hxx @@ -75,7 +75,6 @@ namespace dbaccess mutable sal_Int32 m_nPrivileges; // </properties> ::connectivity::sdbcx::OCollection* m_pColumns; - ::connectivity::sdbcx::OCollection* m_pTables; // IColumnFactory virtual OColumn* createColumn(const OUString& _rName) const; |