Commit 67b7e746 authored by Francois Cartegnie's avatar Francois Cartegnie

mux: ogg: uninitialized value

1st header write can contain random values but that
triggers false positive on valgrind.
parent c2130538
......@@ -248,6 +248,8 @@ static int Open( vlc_object_t *p_this )
var_InheritInteger( p_this, SOUT_CFG_PREFIX "indexintvl" );
p_sys->skeleton.i_index_ratio =
var_InheritFloat( p_this, SOUT_CFG_PREFIX "indexratio" );
p_sys->i_data_start = 0;
p_sys->i_segment_start = 0;
p_mux->p_sys = p_sys;
p_mux->pf_control = Control;
p_mux->pf_addstream = AddStream;
......
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