Commit e422c3b5 authored by Rémi Duraffort's avatar Rémi Duraffort

Do the RIGHT check of asprintf.

parent 686fbd9c
...@@ -909,8 +909,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -909,8 +909,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( psz_codecs ) if( psz_codecs )
{ {
char *psz_morecodecs; char *psz_morecodecs;
asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs); if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
if( psz_morecodecs )
{ {
config_PutPsz( p_libvlc, "codec", psz_morecodecs); config_PutPsz( p_libvlc, "codec", psz_morecodecs);
free( psz_morecodecs ); free( psz_morecodecs );
......
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