From bc0bedf3c950fc5203d0d2b62019fb49edc48fb7 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Fri, 10 Jan 2020 22:51:22 +0800 Subject: [PATCH] avformat/hlsenc: compare without the last directory separator in get_relative_url fix ticket: 8461 there is no problem before commit 75aea52a1051a22bdebd0b7a8098ac6479a529a0 Reviewed-by: Derek Buitenhuis Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index d130f03ea6..e87f08b0e6 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -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;