Files
ffmpeg-PKGBUILD/050-ffmpeg-fix-segfault-with-avisynthplus.patch
T
2024-06-21 18:44:26 -03:00

12 lines
385 B
Diff

--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -143,7 +143,7 @@ static av_cold void avisynth_atexit_hand
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;