mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
player: fix potential segfault when playing dvd:// with DVD disabled
Tries to access the options, which are obviously not allocated if there is no DVD support compiled. Fixes #4393.
This commit is contained in:
parent
b5b3aadf40
commit
24f568c068
@ -181,7 +181,7 @@ static char *mp_get_playback_resume_config_filename(struct MPContext *mpctx,
|
||||
realpath = mp_path_join(tmp, cwd, fname);
|
||||
}
|
||||
}
|
||||
if (bstr_startswith0(bfname, "dvd://") && opts->dvd_opts->device)
|
||||
if (bstr_startswith0(bfname, "dvd://") && opts->dvd_opts && opts->dvd_opts->device)
|
||||
realpath = talloc_asprintf(tmp, "%s - %s", realpath, opts->dvd_opts->device);
|
||||
if ((bstr_startswith0(bfname, "br://") || bstr_startswith0(bfname, "bd://") ||
|
||||
bstr_startswith0(bfname, "bluray://")) && opts->bluray_device)
|
||||
|
Loading…
Reference in New Issue
Block a user