summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-11-26 08:58:54 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-11-26 14:09:33 +0100
commitd7362bf487e54fccdad8a5b73be8181872384a47 (patch)
treeccb57c7fbd54c660c0d7ca359432ef2ff88c6757 /ucb
parent9dcbee50b46ec389276fd0f0a71681a2638c0e1e (diff)
cid#1494446 Uninitialized scalar field
Change-Id: Ib8e1d0e691772e822f81afafbd47ba33698b592e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125839 Reviewed-by: Michael Stahl <michael.stahl@allotropia.de> Tested-by: Jenkins
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-curl/CurlSession.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav-curl/CurlSession.hxx b/ucb/source/ucp/webdav-curl/CurlSession.hxx
index 563f7c3675dd..75ccf682692c 100644
--- a/ucb/source/ucp/webdav-curl/CurlSession.hxx
+++ b/ucb/source/ucp/webdav-curl/CurlSession.hxx
@@ -39,7 +39,7 @@ private:
/// read timeout in milliseconds (connection timeout is stored in m_pCurl)
int m_nReadTimeout = 0;
/// flag to signal abort to transferring thread
- ::std::atomic<bool> m_AbortFlag;
+ ::std::atomic<bool> m_AbortFlag = false;
/// libcurl multi handle
::std::unique_ptr<CURLM, deleter_from_fn<CURLM, curl_multi_cleanup>> m_pCurlMulti;