Commit 0bed6fc3 authored by Rémi Duraffort's avatar Rémi Duraffort

fix overriden variables.

parent 16d47626
......@@ -559,8 +559,6 @@ static inline int ps_psm_fill( ps_psm_t *p_psm, block_t *p_pkt,
es.i_descriptor = i_info_length;
if( i_info_length > 0 )
{
int i = 0;
es.p_descriptor = malloc( i_info_length );
if( es.p_descriptor )
{
......
......@@ -472,7 +472,6 @@ static int ParseVobSubIDX( demux_t *p_demux )
demux_sys_t *p_sys = p_demux->p_sys;
text_t *txt = &p_sys->txt;
char *line;
vobsub_track_t *current_tk = NULL;
for( ;; )
{
......@@ -549,7 +548,7 @@ static int ParseVobSubIDX( demux_t *p_demux )
p_sys->track = realloc( p_sys->track, sizeof( vobsub_track_t ) * (p_sys->i_tracks + 1 ) );
/* Init the track */
current_tk = &p_sys->track[p_sys->i_tracks - 1];
vobsub_track_t *current_tk = &p_sys->track[p_sys->i_tracks - 1];
memset( current_tk, 0, sizeof( vobsub_track_t ) );
current_tk->i_current_subtitle = 0;
current_tk->i_subtitles = 0;
......
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