Skip to content
Snippets Groups Projects
Commit f2ad1495 authored by Martin Storsjö's avatar Martin Storsjö
Browse files

avisynth: Use RTLD_LOCAL instead of RTLD_GLOBAL


There shouldn't be any need to add the loaded libraries to the global
symbol namespace.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 470c9db1
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@
#define AVISYNTH_LIB "libavxsynth.so"
#endif
#define LoadLibrary(x) dlopen(x, RTLD_NOW | RTLD_GLOBAL)
#define LoadLibrary(x) dlopen(x, RTLD_NOW | RTLD_LOCAL)
#define GetProcAddress dlsym
#define FreeLibrary dlclose
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment