Commit 02bf31b4 authored by Rémi Duraffort's avatar Rémi Duraffort

libvlc: Fix a (tiny) buffer overflow and fix #2449

parent 25c10c93
...@@ -864,9 +864,12 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -864,9 +864,12 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( psz_modules && *psz_modules && psz_control && *psz_control ) if( psz_modules && *psz_modules && psz_control && *psz_control )
{ {
psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) + char* psz_tmp;
strlen( psz_control ) + 1 ); if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
sprintf( psz_modules, "%s:%s", psz_modules, psz_control ); {
free( psz_modules );
psz_modules = psz_tmp;
}
} }
else if( psz_control && *psz_control ) else if( psz_control && *psz_control )
{ {
......
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