Commit c229462a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

taglib: fix potential NULL dereference

parent 26d1937b
...@@ -258,15 +258,14 @@ static void ReadMetaFromASF( ASF::Tag* tag, demux_meta_t* p_demux_meta, vlc_meta ...@@ -258,15 +258,14 @@ static void ReadMetaFromASF( ASF::Tag* tag, demux_meta_t* p_demux_meta, vlc_meta
TAB_APPEND_CAST( (input_attachment_t**), TAB_APPEND_CAST( (input_attachment_t**),
p_demux_meta->i_attachments, p_demux_meta->attachments, p_demux_meta->i_attachments, p_demux_meta->attachments,
p_attachment ); p_attachment );
free( psz_name );
char *psz_url; char *psz_url;
if( asprintf( &psz_url, "attachment://%s", if( asprintf( &psz_url, "attachment://%s", psz_name ) != -1 )
p_attachment->psz_name ) == -1 ) {
continue;
vlc_meta_SetArtURL( p_meta, psz_url ); vlc_meta_SetArtURL( p_meta, psz_url );
free( psz_url ); free( psz_url );
} }
free( psz_name );
}
#endif #endif
} }
......
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