0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

core: fix crash if VO init fails

This commit is contained in:
wm4 2012-12-27 16:27:58 +01:00
parent 527b39cafa
commit 56382c91e4

View File

@ -1740,7 +1740,7 @@ static bool is_non_interleaved(struct MPContext *mpctx, struct track *track)
struct demuxer *demuxer = track->demuxer;
for (int type = 0; type < STREAM_TYPE_COUNT; type++) {
struct track *other = mpctx->current_track[type];
if (other != track && other->demuxer && other->demuxer == demuxer)
if (other && other != track && other->demuxer && other->demuxer == demuxer)
return false;
}
return true;