From: Tristan Matthews Date: Sun, 10 Nov 2013 17:50:04 +0000 (-0500) Subject: ogg: initialize skeleton values that will be used in Close() (Fix #9830) X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5d55f77f4356747ab3e3e6eb7ab8ae264828af5b;p=vlc ogg: initialize skeleton values that will be used in Close() (Fix #9830) Signed-off-by: Francois Cartegnie --- diff --git a/modules/mux/ogg.c b/modules/mux/ogg.c index f4f5d9bdaf..5da50933ba 100644 --- a/modules/mux/ogg.c +++ b/modules/mux/ogg.c @@ -242,6 +242,8 @@ static int Open( vlc_object_t *p_this ) p_sys->i_del_streams = 0; p_sys->pp_del_streams = 0; p_sys->i_pos = 0; + p_sys->skeleton.b_create = false; + p_sys->skeleton.b_head_done = false; p_sys->skeleton.i_index_intvl = var_InheritInteger( p_this, SOUT_CFG_PREFIX "indexintvl" ); p_sys->skeleton.i_index_ratio =