Commit d95eef28 authored by Christophe Mutricy's avatar Christophe Mutricy

Fix memleak

Closes #2300
parent 88a9bbf3
...@@ -2024,6 +2024,7 @@ static int ParseSubViewer1( demux_t *p_demux, subtitle_t *p_subtitle, int i_idx ...@@ -2024,6 +2024,7 @@ static int ParseSubViewer1( demux_t *p_demux, subtitle_t *p_subtitle, int i_idx
s = TextGetLine( txt ); s = TextGetLine( txt );
if( !s ) if( !s )
free( psz_text );
return VLC_EGENERIC; return VLC_EGENERIC;
if( sscanf( s, "[%d:%d:%d]", &h2, &m2, &s2 ) == 3 ) if( sscanf( s, "[%d:%d:%d]", &h2, &m2, &s2 ) == 3 )
......
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