Commit 1d3afcdb authored by Adrien Maglo's avatar Adrien Maglo

Avformat mux: fix a memory leak

parent baa3a1b7
...@@ -161,6 +161,7 @@ void CloseMux( vlc_object_t *p_this ) ...@@ -161,6 +161,7 @@ void CloseMux( vlc_object_t *p_this )
} }
avformat_free_context(p_sys->oc); avformat_free_context(p_sys->oc);
av_free(p_sys->io);
free( p_sys->io_buffer ); free( p_sys->io_buffer );
free( p_sys ); 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