summaryrefslogtreecommitdiffstats
path: root/connectivity
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-01 13:37:48 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-01 15:29:56 -0600
commitba71cfb7e1dd011f6205b247816fc08f038333b4 (patch)
tree8df4f9c10679dbaa535e4269df2df35df36628b2 /connectivity
parentcoverity#707692-93 : Uninitialized scalar field (diff)
downloadcore-ba71cfb7e1dd011f6205b247816fc08f038333b4.tar.gz
core-ba71cfb7e1dd011f6205b247816fc08f038333b4.zip
coverity#707694 : Uninitialized scalar field
Change-Id: I77c5e82c64dd8385a75f4b0eaf9d412e94534e6d
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/file/FConnection.cxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx
index 3b37bec8c87a..05237599cc6c 100644
--- a/connectivity/source/drivers/file/FConnection.cxx
+++ b/connectivity/source/drivers/file/FConnection.cxx
@@ -56,13 +56,15 @@ using namespace ::ucbhelper;
typedef connectivity::OMetaConnection OConnection_BASE;
// --------------------------------------------------------------------------------
OConnection::OConnection(OFileDriver* _pDriver)
- : OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this)
- ,m_pDriver(_pDriver)
- ,m_bClosed(sal_False)
- ,m_bShowDeleted(sal_False)
- ,m_bCaseSensitiveExtension( sal_True )
- ,m_bCheckSQL92(sal_False)
- ,m_bDefaultTextEncoding(false)
+ : OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this)
+ , m_pDriver(_pDriver)
+ , m_bClosed(sal_False)
+ , m_bAutoCommit(sal_False)
+ , m_bReadOnly(sal_False)
+ , m_bShowDeleted(sal_False)
+ , m_bCaseSensitiveExtension( sal_True )
+ , m_bCheckSQL92(sal_False)
+ , m_bDefaultTextEncoding(false)
{
m_nTextEncoding = RTL_TEXTENCODING_DONTKNOW;
}