提交 ef59a40c 编写于 作者: M Michael Niedermayer

avformat/url: Change () position in ff_make_absolute_url()

No testcase
Reviewed-by: NNicolas George <george@nsup.org>
Signed-off-by: NMichael Niedermayer <michael@niedermayer.cc>
上级 69be00aa
......@@ -211,8 +211,8 @@ int ff_make_absolute_url(char *buf, int size, const char *base,
if (!base)
base = "";
if ((ret = ff_url_decompose(&ub, base, NULL) < 0) ||
(ret = ff_url_decompose(&uc, rel, NULL) < 0))
if ((ret = ff_url_decompose(&ub, base, NULL)) < 0 ||
(ret = ff_url_decompose(&uc, rel, NULL)) < 0)
goto error;
keep = ub.url;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册