Commit ad361046 authored by Lucas C. Villa Real's avatar Lucas C. Villa Real Committed by Laurent Aimar

Fixes a crash in VLC caused by a missing verification for a NULL pointer.

Signed-off-by: default avatarLaurent Aimar <fenrir@videolan.org>
parent 8f447e01
...@@ -1234,7 +1234,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, const vlc_meta_t *p_me ...@@ -1234,7 +1234,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, const vlc_meta_t *p_me
char **ppsz_all_keys = vlc_meta_CopyExtraNames(p_meta ); char **ppsz_all_keys = vlc_meta_CopyExtraNames(p_meta );
info_category_t *p_cat = NULL; info_category_t *p_cat = NULL;
if( psz_provider || *ppsz_all_keys[0] ) if( psz_provider || ( ppsz_all_keys[0] && *ppsz_all_keys[0] ) )
{ {
char *psz_cat = EsOutProgramGetMetaName( p_pgrm ); char *psz_cat = EsOutProgramGetMetaName( p_pgrm );
if( psz_cat ) if( psz_cat )
......
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