Skip to content
Snippets Groups Projects
Commit a381bf5b authored by Johannes Kauffmann's avatar Johannes Kauffmann
Browse files

substx3g: fix leak on error

(cherry picked from commit 80ca615d)
parent e5cc1bf6
No related branches found
No related tags found
1 merge request!7045[3.0] substx3g: fix leak on error
Pipeline #580095 passed with stages
in 34 minutes and 16 seconds
......@@ -339,7 +339,10 @@ static int Decode( decoder_t *p_dec, block_t *p_block )
psz_subtitle = strndup( (const char*) p_pszstart, i_psz_bytelength );
if ( !psz_subtitle )
{
block_Release( p_block );
return VLCDEC_SUCCESS;
}
p_buf += i_psz_bytelength + sizeof(uint16_t);
......@@ -354,6 +357,7 @@ static int Decode( decoder_t *p_dec, block_t *p_block )
{
text_segment_Delete( p_segment3g->s );
free( p_segment3g );
block_Release( p_block );
return VLCDEC_SUCCESS;
}
......@@ -363,6 +367,7 @@ static int Decode( decoder_t *p_dec, block_t *p_block )
{
text_segment_Delete( p_segment3g->s );
free( p_segment3g );
block_Release( p_block );
return VLCDEC_SUCCESS;
}
subpicture_updater_sys_t *p_spu_sys = p_spu->updater.p_sys;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment