blob: dd58e840eec18eac57e4c6cd250e4fa72306e4de (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -141,7 +141,7 @@ static av_cold void avisynth_atexit_handler(void);
static av_cold int avisynth_load_library(void)
{
- avs_library.library = dlopen(AVISYNTH_LIB, RTLD_NOW | RTLD_LOCAL);
+ avs_library.library = dlopen(AVISYNTH_LIB, RTLD_NOW | RTLD_DEEPBIND);
if (!avs_library.library)
return AVERROR_UNKNOWN;
|