Commit 307c778c authored by Rémi Duraffort's avatar Rémi Duraffort

Fix sizeof mismatch (cid #1049611)

parent 99f48b0e
...@@ -318,7 +318,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -318,7 +318,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
/* Duplicate title infos */ /* Duplicate title infos */
*pi_int = p_sys->i_title; *pi_int = p_sys->i_title;
*ppp_title = calloc( p_sys->i_title, sizeof(input_title_t **) ); *ppp_title = calloc( p_sys->i_title, sizeof(input_title_t *) );
for( int i = 0; i < p_sys->i_title; i++ ) for( int i = 0; i < p_sys->i_title; i++ )
(*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->pp_title[i] ); (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->pp_title[i] );
......
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