From b53752dc4c22f4f5059be8a7a1aad9e648ed8ba9 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sat, 21 Feb 2026 14:11:52 +0100 Subject: [PATCH] avformat/tcp: Fix shadowing Signed-off-by: Andreas Rheinhardt --- 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; }