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:") ||