From cde57eee98d2e26daeeb1ba0cdd1f3d3acb3eb8a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 24 Jan 2016 20:07:48 +0100 Subject: avformat/hls: Check that filename is not "" in probe before checking its extension Possibly the check as a whole causes more problems than it helps, if so dont hesitate to remove it Signed-off-by: Michael Niedermayer --- libavformat/hls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index 846d884cb1..dce8a5ceb1 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1984,7 +1984,7 @@ static int hls_probe(AVProbeData *p) if (strncmp(p->buf, "#EXTM3U", 7)) return 0; - if (p->filename && !av_match_ext(p->filename, "m3u8,m3u")) + if (p->filename && *p->filename && !av_match_ext(p->filename, "m3u8,m3u")) return 0; if (strstr(p->buf, "#EXT-X-STREAM-INF:") || -- cgit v1.2.3