vlc | branch: master | Tristan Matthews <[email protected]> | Wed Dec 4 09:37:11 2013 -0500| [cb7e26a4bfddfb6fb029ae6d07a7890bd88bf61e] | committer: Tristan Matthews
ogg: fix order of frees > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cb7e26a4bfddfb6fb029ae6d07a7890bd88bf61e --- modules/mux/ogg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mux/ogg.c b/modules/mux/ogg.c index f81c927..8891372 100644 --- a/modules/mux/ogg.c +++ b/modules/mux/ogg.c @@ -292,8 +292,8 @@ static void Close( vlc_object_t * p_this ) { OggCreateStreamFooter( p_mux, p_sys->pp_del_streams[i] ); free( p_sys->pp_del_streams[i]->p_oggds_header ); - free( p_sys->pp_del_streams[i] ); free( p_sys->pp_del_streams[i]->skeleton.p_index ); + free( p_sys->pp_del_streams[i] ); } free( p_sys->pp_del_streams ); p_sys->i_streams -= p_sys->i_del_streams; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
