Files
ffmpeg-PKGBUILD/050-ffmpeg-fix-segfault-with-avisynthplus.patch
T
2024-11-07 19:44:45 -03:00

12 lines
408 B
Diff

--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -120,7 +120,7 @@ typedef struct AviSynthContext {
static av_cold int avisynth_load_library(AviSynthContext *avs)
{
- avs->avs_library.library = dlopen(AVISYNTH_LIB, RTLD_NOW | RTLD_LOCAL);
+ avs->avs_library.library = dlopen(AVISYNTH_LIB, RTLD_NOW | RTLD_DEEPBIND);
if (!avs->avs_library.library)
return AVERROR_UNKNOWN;