ucb/source/ucp/webdav-curl/SerfLockStore.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit c9ce9832301162100a64a96d537dd63803bbb729
Author:     Caolán McNamara <[email protected]>
AuthorDate: Tue Nov 4 14:08:46 2025 +0000
Commit:     Caolán McNamara <[email protected]>
CommitDate: Tue Nov 4 20:53:14 2025 +0100

    revert cid#1662039 Data race condition
    
    Change-Id: I30407ae9619f2159a5afcf692b886a6e69ae8c81
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193414
    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 d6dff618cfe7..d4af33e4650f 100644
--- a/ucb/source/ucp/webdav-curl/SerfLockStore.cxx
+++ b/ucb/source/ucp/webdav-curl/SerfLockStore.cxx
@@ -80,8 +80,7 @@ void TickerThread::execute()
         else
         {
             // Wait until the next deadline or a notification
-            m_rLockStore.m_aCondition.wait_for(aGuard, sleep_duration,
-                [this] { return !m_rLockStore.m_aLockInfoMap.empty() || 
m_bFinish; });
+            m_rLockStore.m_aCondition.wait_for(aGuard, sleep_duration);
         }
     }
 

Reply via email to