summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-01-31 20:21:57 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-01-31 21:27:24 -0600
commit863e8cb0cfd0da5202b3f2f4cd9a72251a7b6e7a (patch)
tree4267098af345d720c411f478fda308c259b2a1cc /ucb
parent4f957dc0c734c9a9e918ab213175f0d0fac43c67 (diff)
coverity#984166 : Uninitialized scalar field
Change-Id: Ibc58fb412cd171193e0a76beb1a45a38b4cb412d
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/NeonSession.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx
index a23a123ab299..fcfab2a9fcb9 100644
--- a/ucb/source/ucp/webdav-neon/NeonSession.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx
@@ -585,17 +585,17 @@ bool NeonSession::m_bGlobalsInited = false;
osl::Mutex aGlobalNeonMutex;
NeonLockStore NeonSession::m_aNeonLockStore;
-NeonSession::NeonSession(
- const rtl::Reference< DAVSessionFactory > & rSessionFactory,
- const OUString& inUri,
- const uno::Sequence< beans::NamedValue >& rFlags,
- const ucbhelper::InternetProxyDecider & rProxyDecider )
+NeonSession::NeonSession( const rtl::Reference< DAVSessionFactory > & rSessionFactory,
+ const OUString& inUri,
+ const uno::Sequence< beans::NamedValue >& rFlags,
+ const ucbhelper::InternetProxyDecider & rProxyDecider )
throw ( DAVException )
-: DAVSession( rSessionFactory ),
- m_aFlags( rFlags ),
- m_pHttpSession( 0 ),
- m_pRequestData( new RequestDataMap ),
- m_rProxyDecider( rProxyDecider )
+ : DAVSession( rSessionFactory )
+ , m_nProxyPort( 0 )
+ , m_aFlags( rFlags )
+ , m_pHttpSession( 0 )
+ , m_pRequestData( new RequestDataMap )
+ , m_rProxyDecider( rProxyDecider )
{
NeonUri theUri( inUri );
m_aScheme = theUri.GetScheme();
@@ -617,7 +617,7 @@ NeonSession::~NeonSession( )
}
void NeonSession::Init( const DAVRequestEnvironment & rEnv )
- throw ( DAVException )
+ throw ( DAVException )
{
osl::Guard< osl::Mutex > theGuard( m_aMutex );
m_aEnv = rEnv;