Commit 4774dc6c authored by Rémi Duraffort's avatar Rémi Duraffort

Fix memleak (should fix #1081)

parent 21f23760
......@@ -331,6 +331,7 @@ static void Close( vlc_object_t * p_this )
DESTROY_PACKETIZER( p_sys->p_packetizer );
if( p_sys->p_block_out ) block_Release( p_sys->p_block_out );
if( p_sys->p_block_in ) block_Release( p_sys->p_block_in );
free( p_sys );
}
......
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