Commit 9a2028d4 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/frei0r: correctly handle paths longer than 1023 chars

parent af9ec3dd
...@@ -236,9 +236,11 @@ static av_cold int frei0r_init(AVFilterContext *ctx, ...@@ -236,9 +236,11 @@ static av_cold int frei0r_init(AVFilterContext *ctx,
av_free(path); av_free(path);
} }
if (!frei0r->dl_handle && (path = getenv("HOME"))) { if (!frei0r->dl_handle && (path = getenv("HOME"))) {
char prefix[1024]; char *prefix = av_asprintf("%s/.frei0r-1/lib/", path);
snprintf(prefix, sizeof(prefix), "%s/.frei0r-1/lib/", path); if (!prefix)
return AVERROR(ENOMEM);
frei0r->dl_handle = load_path(ctx, prefix, dl_name); frei0r->dl_handle = load_path(ctx, prefix, dl_name);
av_free(prefix);
} }
if (!frei0r->dl_handle) if (!frei0r->dl_handle)
frei0r->dl_handle = load_path(ctx, "/usr/local/lib/frei0r-1/", dl_name); frei0r->dl_handle = load_path(ctx, "/usr/local/lib/frei0r-1/", dl_name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment