Commit dc2014f8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

- Fix unitialized variable in demux control helper

There's still a segfault somewhere (occurs after many seeks but I can't reproduce it with a debugger)
parent 3ec79295
......@@ -121,6 +121,8 @@ static int Open( vlc_object_t * p_this )
date_Init( &p_sys->pts, 1, 1 );
date_Set( &p_sys->pts, 1 );
es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
return VLC_SUCCESS;
}
......
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