blob: 8968344cf839afd2490e10becfd11a9eb80717e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/effects/VST/VSTEffect.cpp.orig 2015-07-11 10:02:22 UTC
+++ src/effects/VST/VSTEffect.cpp
@@ -2576,7 +2576,7 @@ bool VSTEffect::Load()
// symbols.
//
// Once we define a proper external API, the flags can be removed.
- void *lib = dlopen((const char *)wxString(realPath).ToUTF8(), RTLD_NOW | RTLD_LOCAL | RTLD_DEEPBIND);
+ void *lib = dlopen((const char *)wxString(realPath).ToUTF8(), RTLD_NOW | RTLD_LOCAL);
if (!lib)
{
return false;
|