summaryrefslogtreecommitdiff
path: root/extensions/source/update/check/updatecheck.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/update/check/updatecheck.cxx')
-rw-r--r--extensions/source/update/check/updatecheck.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx
index 4306e073e26b..bbeaf3565cac 100644
--- a/extensions/source/update/check/updatecheck.cxx
+++ b/extensions/source/update/check/updatecheck.cxx
@@ -844,9 +844,10 @@ UpdateCheck::download()
{
shutdownThread(true);
- osl::ClearableMutexGuard aGuard2(m_aMutex);
- enableDownload(true);
- aGuard2.clear();
+ {
+ osl::MutexGuard aGuard2(m_aMutex);
+ enableDownload(true);
+ }
setUIState(UPDATESTATE_DOWNLOADING);
}
}
@@ -1051,7 +1052,7 @@ UpdateCheck::downloadTargetExists(const OUString& rFileName)
bool UpdateCheck::checkDownloadDestination( const OUString& rFileName )
{
- osl::ClearableMutexGuard aGuard(m_aMutex);
+ osl::MutexGuard aGuard(m_aMutex);
rtl::Reference< UpdateHandler > aUpdateHandler( getUpdateHandler() );