mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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 <michael@niedermayer.cc>
This commit is contained in:
parent
3e7d684912
commit
cde57eee98
@ -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:") ||
|
||||
|
Loading…
Reference in New Issue
Block a user