diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 20:33:14 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 20:33:14 +0000 |
commit | 3eb06071874d2d3a6f868e74876a3129efea434c (patch) | |
tree | ae7b6fb9de1a42b3795b12bd955ac22a6ee678a2 /dbaccess | |
parent | 6df6fefed82a4ee37f253f48de61a650db5c4f3a (diff) |
coverity#738615 Uninitialized pointer field
Change-Id: I33e67198c99cfa6bd240b4ca7eeeb32c8f91cb6d
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/odbcconfig.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/odbcconfig.cxx b/dbaccess/source/ui/dlg/odbcconfig.cxx index f54b3f2ad19f..cc9fffa51643 100644 --- a/dbaccess/source/ui/dlg/odbcconfig.cxx +++ b/dbaccess/source/ui/dlg/odbcconfig.cxx @@ -160,12 +160,12 @@ struct OdbcTypesImpl OOdbcEnumeration::OOdbcEnumeration() #ifdef HAVE_ODBC_SUPPORT :m_pAllocHandle(NULL) + ,m_pFreeHandle(NULL) ,m_pSetEnvAttr(NULL) ,m_pDataSources(NULL) ,m_pImpl(new OdbcTypesImpl) #endif { - sal_Bool bLoaded = load(ODBC_LIBRARY); #ifdef ODBC_LIBRARY_1 if ( !bLoaded ) |