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

libvlc_media_get_meta: do not free(NULL)

This has no effects, so lets not do it.
parent a838a72f
...@@ -486,11 +486,9 @@ char *libvlc_media_get_meta( libvlc_media_t *p_md, libvlc_meta_t e_meta ) ...@@ -486,11 +486,9 @@ char *libvlc_media_get_meta( libvlc_media_t *p_md, libvlc_meta_t e_meta )
} }
/* Should be integrated in core */ /* Should be integrated in core */
if( !psz_meta && e_meta == libvlc_meta_Title && p_md->p_input_item->psz_name ) if( psz_meta == NULL && e_meta == libvlc_meta_Title
{ && p_md->p_input_item->psz_name != NULL )
free( psz_meta ); psz_meta = strdup( p_md->p_input_item->psz_name );
return strdup( p_md->p_input_item->psz_name );
}
return psz_meta; return psz_meta;
} }
......
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