From a5c86be57a8391fc2e5c4f9e7b24d9dcaba0e89e Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 24 Aug 2020 16:02:05 +0100 Subject: [PATCH] VST3: Fixed a bug introduced in the recent DLLHandleCache changes when hosting plug-ins on Windows and Linux --- .../format_types/juce_VST3PluginFormat.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp index a275e3b908..55df896b82 100644 --- a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp @@ -919,6 +919,10 @@ private: #endif return true; } + else + { + return true; + } library.close(); }