diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-30 16:27:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-31 07:34:13 +0100 |
commit | 4cfcf965b5c95b1ba7dd454e9dda954e8315b8a9 (patch) | |
tree | 394c3c23ea9deeabcc7c3b1ac477f44b3a02a85d /vcl/headless/headlessinst.cxx | |
parent | 0d6b4f5f6946cdadfe2a09946df90fa08f3588d0 (diff) |
ReleaseYieldMutex is always called with true
so drop param and rename to ReleaseYieldMutexAll
Change-Id: Ic4fcee24d46405659e54363c87f21d88696b0ce1
Reviewed-on: https://gerrit.libreoffice.org/44057
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/headless/headlessinst.cxx')
-rw-r--r-- | vcl/headless/headlessinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/headless/headlessinst.cxx b/vcl/headless/headlessinst.cxx index 79f2f268ed2e..299c5f7d607d 100644 --- a/vcl/headless/headlessinst.cxx +++ b/vcl/headless/headlessinst.cxx @@ -98,7 +98,7 @@ SalInstance *CreateSalInstance() void DestroySalInstance( SalInstance *pInst ) { - pInst->ReleaseYieldMutex( true ); + pInst->ReleaseYieldMutexAll(); delete pInst; } |