mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
demux_edl: make protocol comparison case insensitive
Else nested edl protocol causes infinite recursion, when loading. Found by OSS-Fuzz.
This commit is contained in:
parent
49cb039b8c
commit
d6803c4518
@ -567,7 +567,7 @@ error:
|
|||||||
|
|
||||||
static void fix_filenames(struct tl_parts *parts, char *source_path)
|
static void fix_filenames(struct tl_parts *parts, char *source_path)
|
||||||
{
|
{
|
||||||
if (bstr_equals0(mp_split_proto(bstr0(source_path), NULL), "edl"))
|
if (!bstrcasecmp0(mp_split_proto(bstr0(source_path), NULL), "edl"))
|
||||||
return;
|
return;
|
||||||
struct bstr dirname = mp_dirname(source_path);
|
struct bstr dirname = mp_dirname(source_path);
|
||||||
for (int n = 0; n < parts->num_parts; n++) {
|
for (int n = 0; n < parts->num_parts; n++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user