This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Try to fix a crash on close
Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-rc2
falkTX
4 years ago
parent
a511bb259e
commit
48d9d4c431
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
4 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-3
source/backend/plugin/CarlaPluginInternal.cpp
+ 4
- 3
source/backend/plugin/CarlaPluginInternal.cpp
View File
@@ -589,11 +589,12 @@ CarlaPlugin::ProtectedData::PostRtEvents::PostRtEvents() noexcept
CarlaPlugin::ProtectedData::PostRtEvents::~PostRtEvents() noexcept
{
dataMutex.lock();
data.clear();
dataMutex.unlock();
dataPendingMutex.lock();
data.clear();
dataPendingRT.clear();
dataMutex.unlock();
dataPendingMutex.unlock();
}
Write
Preview
Loading…
Cancel
Save