Commit 953cedd2 authored by Rafaël Carré's avatar Rafaël Carré

decklink output: missing initialization

parent ebee0d64
...@@ -225,6 +225,7 @@ static struct decklink_sys_t *GetDLSys(vlc_object_t *obj) ...@@ -225,6 +225,7 @@ static struct decklink_sys_t *GetDLSys(vlc_object_t *obj)
sys = (struct decklink_sys_t*)malloc(sizeof(*sys)); sys = (struct decklink_sys_t*)malloc(sizeof(*sys));
if (sys) { if (sys) {
sys->p_output = NULL; sys->p_output = NULL;
sys->offset = 0;
sys->users = 0; sys->users = 0;
sys->aconn = 0; sys->aconn = 0;
vlc_mutex_init(&sys->lock); vlc_mutex_init(&sys->lock);
......
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