Commit c7690cec authored by Rémi Duraffort's avatar Rémi Duraffort

Fix memleak (CID 225)

parent d82d3cba
...@@ -593,11 +593,13 @@ static int MediaAddES( vod_t *p_vod, vod_media_t *p_media, es_format_t *p_fmt ) ...@@ -593,11 +593,13 @@ static int MediaAddES( vod_t *p_vod, vod_media_t *p_media, es_format_t *p_fmt )
} }
if( i_nal_type == 7 ) if( i_nal_type == 7 )
{ {
free( p_64_sps );
p_64_sps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 ); p_64_sps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
sprintf_hexa( hexa, &p_buffer[5], 3 ); sprintf_hexa( hexa, &p_buffer[5], 3 );
} }
else if( i_nal_type == 8 ) else if( i_nal_type == 8 )
{ {
free( p_64_pps );
p_64_pps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 ); p_64_pps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
} }
i_buffer -= i_size; i_buffer -= i_size;
......
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