Skip to content

Commit

Permalink
Change PluginManager to use RTLD_LOCAL in dlopen
Browse files Browse the repository at this point in the history
  • Loading branch information
anjaldoshi committed Mar 3, 2025
1 parent c5af53b commit 204dda7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Processors/PluginManager/PluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ int PluginManager::loadPlugin (const String& pluginLoc)
to memory mishaps.
*/
void* handle = 0;
handle = dlopen (processorLocCString, RTLD_DEEPBIND | RTLD_NOW);
handle = dlopen (processorLocCString, RTLD_LOCAL | RTLD_NOW);
#endif

if (! handle)
Expand Down

0 comments on commit 204dda7

Please sign in to comment.