提交 33893e6a 编写于 作者: D Duncan Salerno 提交者: Martin Storsjö

url: Handle relative urls starting with two slashes

This is defined by RFC 3986 section 5.4.1 to be handled this way.
Signed-off-by: NMartin Storsjö <martin@martin.st>
上级 eea00381
......@@ -3396,10 +3396,16 @@ void ff_make_absolute_url(char *buf, int size, const char *base,
av_strlcpy(buf, base, size);
sep = strstr(buf, "://");
if (sep) {
sep += 3;
sep = strchr(sep, '/');
if (sep)
*sep = '\0';
/* Take scheme from base url */
if (rel[1] == '/') {
sep[1] = '\0';
} else {
/* Take scheme and host from base url */
sep += 3;
sep = strchr(sep, '/');
if (sep)
*sep = '\0';
}
}
av_strlcat(buf, rel, size);
return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册