diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-03 13:24:52 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-03 13:24:57 +0100 |
commit | 4bcb58b3ad884b50bd27a0925f108ea4416d2047 (patch) | |
tree | 0c7ee9a04a1ceb68a5437fd56e44b4116f47f978 | |
parent | cc5f5e140cdcc96a9a0574d4587b176adfb4a6ac (diff) | |
parent | f2ad1495f23376ce61542967f4fc14205f284d40 (diff) | |
download | ffmpeg-4bcb58b3ad884b50bd27a0925f108ea4416d2047.tar.gz |
Merge commit 'f2ad1495f23376ce61542967f4fc14205f284d40'
* commit 'f2ad1495f23376ce61542967f4fc14205f284d40':
avisynth: Use RTLD_LOCAL instead of RTLD_GLOBAL
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/avisynth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index c01d7e484c..fbd4a8d4b0 100644 --- a/libavformat/avisynth.c +++ b/libavformat/avisynth.c @@ -43,7 +43,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 |