diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-13 18:55:01 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-13 18:55:15 +0200 |
commit | d3ae94f04e0cfeba49f5e0de66848743391fc336 (patch) | |
tree | 9579d3f258edcf5e60d67891912c783fc5b97b0a /uui/source/iahndl.cxx | |
parent | 3ea6d0620d34c14950c5b1a25af801efd7fde492 (diff) |
Don't crash on extension update check
We don't need to release the SolarMutex, as we don't own it.
Change-Id: Id0a0ae8d478dc56d0da2ab296f8031e935920c97
Diffstat (limited to 'uui/source/iahndl.cxx')
-rw-r--r-- | uui/source/iahndl.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index f3a801a47c0c..36ba5046d983 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -172,7 +172,6 @@ UUIInteractionHelper::handleRequest( HandleData aHD(rRequest); Link<void*,void> aLink(&aHD,handlerequest); Application::PostUserEvent(aLink,this); - SolarMutexReleaser aReleaser; aHD.wait(); return aHD.bHandled; } @@ -224,7 +223,6 @@ UUIInteractionHelper::getStringFromRequest( HandleData aHD(rRequest); Link<void*,void> aLink(&aHD,getstringfromrequest); Application::PostUserEvent(aLink,this); - SolarMutexReleaser aReleaser; aHD.wait(); return aHD.m_aResult; } |