diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-12 13:27:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 15:10:48 +0200 |
commit | 639f35e22f5b61920fdd2662b230467fad39c123 (patch) | |
tree | 9c199f25a004498915fd119e656b6cd6828c29dc /connectivity | |
parent | 326f1ccb17ec2c1466d029545fd0d9000458339f (diff) |
cid#707705 uninitialized pointer field
Change-Id: I80679a2cb99cdc912ed021cf993adeb3478355c4
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/odbc/OConnection.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/connectivity/source/drivers/odbc/OConnection.cxx b/connectivity/source/drivers/odbc/OConnection.cxx index 0a35a58e849f..03942e561bd3 100644 --- a/connectivity/source/drivers/odbc/OConnection.cxx +++ b/connectivity/source/drivers/odbc/OConnection.cxx @@ -48,6 +48,7 @@ using namespace com::sun::star::sdbc; OConnection::OConnection(const SQLHANDLE _pDriverHandle,ODBCDriver* _pDriver) : OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this) ,m_pDriver(_pDriver) + ,m_aConnectionHandle(NULL) ,m_pDriverHandleCopy(_pDriverHandle) ,m_nStatementCount(0) ,m_bClosed(sal_True) |