[FFmpeg-devel] [PATCH] avformat/hlsenc: compare without the last directory separator in get_relative_url
Steven Liu
lq at chinaffmpeg.org
Fri Jan 10 16:51:22 EET 2020
fix ticket: 8461
Signed-off-by: Steven Liu <lq at chinaffmpeg.org>
---
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;
--
2.17.2 (Apple Git-113)
More information about the ffmpeg-devel
mailing list