This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/4.4 in repository ffmpeg.
commit f696860fd1b7ed9e6bda48ddf8ddf829575df967 Author: Michael Niedermayer <[email protected]> AuthorDate: Tue Jan 6 23:29:18 2026 +0100 Commit: Michael Niedermayer <[email protected]> CommitDate: Tue May 5 18:54:56 2026 +0200 avformat/http: Check that the protocol of redirects is http or https Fixes: #YWH-PGM40646-10 Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit b9227d49eabce4e54b2dedf60ec23a96d74ba16a) Signed-off-by: Michael Niedermayer <[email protected]> --- libavformat/http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index b8921f25d2..2ef823e5ff 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -220,7 +220,10 @@ static int http_open_cnx_internal(URLContext *h, AVDictionary **options) if (err < 0) return err; } + } else if (strcmp(proto, "http")) { + return AVERROR(EINVAL); } + if (port < 0) port = 80; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
