diff options
author | Giuseppe Castagno <giuseppe.castagno@acca-esse.eu> | 2016-08-26 16:26:29 +0200 |
---|---|---|
committer | Giuseppe Castagno <giuseppe.castagno@acca-esse.eu> | 2016-08-26 16:26:57 +0000 |
commit | 15f1721dcb8a0550a5f7db6c0bafd56e7b08ff39 (patch) | |
tree | cde5d735a7a1b7040a3a19ec28a5636d287d1a49 /ucb | |
parent | f551477ab32ad2671d85a3070a0a436715ea7505 (diff) |
tdf#101094 (28): Put back the thread mutex guard...
...the one I wrongly removed in commit
72589082945e5a197f3fb4b884f48dd4ae275e5f
Change-Id: I9f8e2f34a91b0fe481b1fe0f4655e3899a0589a6
Reviewed-on: https://gerrit.libreoffice.org/28412
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonSession.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx index b3f54e6fa4fe..9c285c37d7e0 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.cxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx @@ -845,6 +845,8 @@ void NeonSession::OPTIONS( const OUString & inPath, const DAVRequestEnvironment & rEnv ) throw( std::exception ) { + osl::Guard< osl::Mutex > theGuard( m_aMutex ); + SAL_INFO( "ucb.ucp.webdav", "OPTIONS - relative URL <" << inPath << ">" ); rOptions.reset(); |