diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-06-01 14:14:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-06-01 16:43:29 +0200 |
commit | 754eb1541a6ca709f78afbc7fb2b75f626562dcc (patch) | |
tree | 5878eda9cda65c691533c14d4ffa63e5f0934415 /cppu/source | |
parent | c2253f587b68f7277f30259160155f2bbf7adc78 (diff) |
No need to call resume() on all already running thread
(This was there ever since the beginning in
85c2477a9479b08e49e651a8f6bede5b8b51613c "INTEGRATION: CWS bunoexttm", while for
the similar OuterThread it was always absent.)
Change-Id: I3c43f0e35435b6035f6a1f2a1ca9f104bd639689
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135240
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cppu/source')
-rw-r--r-- | cppu/source/AffineBridge/AffineBridge.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cppu/source/AffineBridge/AffineBridge.cxx b/cppu/source/AffineBridge/AffineBridge.cxx index 156d6eb9c7a0..3e2b01df1cca 100644 --- a/cppu/source/AffineBridge/AffineBridge.cxx +++ b/cppu/source/AffineBridge/AffineBridge.cxx @@ -245,7 +245,6 @@ void AffineBridge::v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam) if (m_innerThreadId == 0) // no inner thread yet { m_pInnerThread.reset(new InnerThread(this)); - m_pInnerThread->resume(); } bool bResetId = false; |