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
1 changed files with 1 additions and 1 deletions

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;