ucb/source/ucp/webdav-curl/SerfLockStore.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 02b0772b31fe83f8dc5c6f196a82aea77a8db34f Author: Caolán McNamara <[email protected]> AuthorDate: Fri Nov 7 08:29:08 2025 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sat Nov 22 21:03:03 2025 +0100 cid#1662039 silence Data race condition Change-Id: I2618b7bd7bca94a8ffb2264c6f15469a1e0d577b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194306 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/ucb/source/ucp/webdav-curl/SerfLockStore.cxx b/ucb/source/ucp/webdav-curl/SerfLockStore.cxx index d4af33e4650f..b91fa33ef51f 100644 --- a/ucb/source/ucp/webdav-curl/SerfLockStore.cxx +++ b/ucb/source/ucp/webdav-curl/SerfLockStore.cxx @@ -80,6 +80,7 @@ void TickerThread::execute() else { // Wait until the next deadline or a notification + // coverity[wait_not_in_locked_loop : SUPPRESS] - a spurious wakeup is ok m_rLockStore.m_aCondition.wait_for(aGuard, sleep_duration); } }
