This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
VST3: Unload macOS bundle in destructor of DLLHandle with CFBundleUnloadExecutable() to fix crash when loading some third-party plug-ins a second time
tags/2021-05-28
ed
5 years ago
parent
50a22b75c2
commit
814f317346
1 changed files
with
1 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp
+ 1
- 0
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp
View File
@@ -845,6 +845,7 @@ struct DLLHandle
if (auto exitFn = (ExitModuleFn) getFunction ("bundleExit"))
exitFn();
CFBundleUnloadExecutable (bundleRef);
CFRelease (bundleRef);
bundleRef = nullptr;
}
Write
Preview
Loading…
Cancel
Save