Commit 2df1cc66 authored by Adrien Maglo's avatar Adrien Maglo Committed by Jean-Baptiste Kempf

chromecast: initialize i_requestId

This fix the random start fail of the module.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 32486e65
......@@ -73,7 +73,8 @@ enum
struct sout_stream_sys_t
{
sout_stream_sys_t()
: p_tls(NULL), i_status(CHROMECAST_DISCONNECTED), p_out(NULL)
: p_tls(NULL), i_requestId(0),
i_status(CHROMECAST_DISCONNECTED), p_out(NULL)
{
atomic_init(&ab_error, false);
}
......
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