avformat/tcp: Fix shadowing

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2026-02-21 14:11:52 +01:00
parent 619839ac16
commit b53752dc4c

View File

@@ -167,7 +167,7 @@ static int tcp_open(URLContext *h, const char *uri, int flags)
} }
p = strchr(uri, '?'); p = strchr(uri, '?');
if (p) { 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) if (ret < 0)
return ret; return ret;
} }