Commit 4e647fc9 authored by Laurent Aimar's avatar Laurent Aimar

* demux: init info field. (Not used yet).

parent 935df4c9
...@@ -235,6 +235,9 @@ demux_t *__demux2_New( vlc_object_t *p_obj, ...@@ -235,6 +235,9 @@ demux_t *__demux2_New( vlc_object_t *p_obj,
p_demux->pf_demux = NULL; p_demux->pf_demux = NULL;
p_demux->pf_control = NULL; p_demux->pf_control = NULL;
p_demux->p_sys = NULL; p_demux->p_sys = NULL;
p_demux->info.i_update = 0;
p_demux->info.i_title = 0;
p_demux->info.i_seekpoint = 0;
psz_module = p_demux->psz_demux; psz_module = p_demux->psz_demux;
if( *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) ) if( *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) )
......
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