Commit bc0bedf3 authored by Steven Liu's avatar Steven Liu

avformat/hlsenc: compare without the last directory separator in get_relative_url

fix ticket: 8461
there is no problem before commit 75aea52aReviewed-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: 's avatarSteven Liu <lq@chinaffmpeg.org>
parent b5dba152
......@@ -1234,7 +1234,7 @@ static const char* get_relative_url(const char *master_url, const char *media_ur
if (!p) p = strrchr(master_url, '\\');
if (p) {
base_len = p + 1 - master_url;
base_len = p - master_url;
if (av_strncasecmp(master_url, media_url, base_len)) {
av_log(NULL, AV_LOG_WARNING, "Unable to find relative url\n");
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment