command: fix NULL pointer deref in "video-codec" property

Fixes #2729.
This commit is contained in:
wm4 2016-01-18 20:10:28 +01:00
parent 46bcdb7039
commit 5053f4cc3f
1 changed files with 1 additions and 1 deletions

View File

@ -2438,7 +2438,7 @@ static int mp_property_video_codec(void *ctx, struct m_property *prop,
{
MPContext *mpctx = ctx;
struct track *track = mpctx->current_track[0][STREAM_VIDEO];
const char *c = track->d_video ? track->d_video->decoder_desc : NULL;
const char *c = track && track->d_video ? track->d_video->decoder_desc : NULL;
return m_property_strdup_ro(action, arg, c);
}