Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-03 15:24:52 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-01-03 15:24:57 +0300
commit4bcb58b3ad884b50bd27a0925f108ea4416d2047 (patch)
tree0c7ee9a04a1ceb68a5437fd56e44b4116f47f978 /libavformat/avisynth.c
parentcc5f5e140cdcc96a9a0574d4587b176adfb4a6ac (diff)
parentf2ad1495f23376ce61542967f4fc14205f284d40 (diff)
Merge commit 'f2ad1495f23376ce61542967f4fc14205f284d40'
* commit 'f2ad1495f23376ce61542967f4fc14205f284d40': avisynth: Use RTLD_LOCAL instead of RTLD_GLOBAL Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avisynth.c')
-rw-r--r--libavformat/avisynth.c2
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