Commit e64c71e8 authored by Rafaël Carré's avatar Rafaël Carré

check for NULL

parent 0e3b72f6
...@@ -163,6 +163,8 @@ int libvlc_video_get_size( libvlc_media_player_t *p_mi, unsigned num, ...@@ -163,6 +163,8 @@ int libvlc_video_get_size( libvlc_media_player_t *p_mi, unsigned num,
{ {
libvlc_media_track_info_t *info; libvlc_media_track_info_t *info;
int ret = -1; int ret = -1;
if (!p_mi->p_md)
return ret;
int infos = libvlc_media_get_tracks_info(p_mi->p_md, &info); int infos = libvlc_media_get_tracks_info(p_mi->p_md, &info);
if (infos <= 0) if (infos <= 0)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment