Commit 4c74cf33 authored by Rémi Duraffort's avatar Rémi Duraffort

rtmp: fix a memory leak (we must release the fifo)

parent 2372b5be
......@@ -239,6 +239,9 @@ error2:
vlc_cond_destroy( &p_sys->p_thread->wait );
vlc_mutex_destroy( &p_sys->p_thread->lock );
block_FifoRelease( p_sys->p_thread->p_fifo_input );
block_FifoRelease( p_sys->p_thread->p_empty_blocks );
free( p_sys->p_thread->psz_application );
free( p_sys->p_thread->psz_media );
......
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