This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit b53752dc4c22f4f5059be8a7a1aad9e648ed8ba9 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 14:11:52 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/tcp: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index ce9f69a50b..09dc8a9679 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -167,7 +167,7 @@ static int tcp_open(URLContext *h, const char *uri, int flags) } p = strchr(uri, '?'); if (p) { - int ret = ff_parse_opts_from_query_string(s, p, 1); + ret = ff_parse_opts_from_query_string(s, p, 1); if (ret < 0) return ret; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
