diff options
author | sb <sb@openoffice.org> | 2009-12-18 16:06:10 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2009-12-18 16:06:10 +0100 |
commit | 8d1a56460f0cfc55d6cd72c1c4e936e7871c1cde (patch) | |
tree | 01cac95c12556aafb6432d8da0ce51700f3e2f82 /desktop/source/app/app.cxx | |
parent | 875ac20478f16e5107acb222c0b851b99d2e0f27 (diff) |
sb118: desktop/source/app/app.cxx: the acceptors in the AcceptorMap must be released with the solar mutex unlocked, to avoid deadlock
Diffstat (limited to 'desktop/source/app/app.cxx')
-rw-r--r-- | desktop/source/app/app.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index ede5fdf7511a..6b78309af7ce 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1642,7 +1642,11 @@ void Desktop::Main() // remove temp directory RemoveTemporaryDirectory(); + // The acceptors in the AcceptorMap must be released (in DeregisterServices) + // with the solar mutex unlocked, to avoid deadlock: + nAcquireCount = Application::ReleaseSolarMutex(); DeregisterServices(); + Application::AcquireSolarMutex(nAcquireCount); tools::DeInitTestToolLib(); |