summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-22 20:33:14 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-22 20:33:14 +0000
commit3eb06071874d2d3a6f868e74876a3129efea434c (patch)
treeae7b6fb9de1a42b3795b12bd955ac22a6ee678a2
parent6df6fefed82a4ee37f253f48de61a650db5c4f3a (diff)
coverity#738615 Uninitialized pointer field
Change-Id: I33e67198c99cfa6bd240b4ca7eeeb32c8f91cb6d
-rw-r--r--dbaccess/source/ui/dlg/odbcconfig.cxx2
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 )