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

Fix unitialized value

parent 6ea07c2e
......@@ -271,9 +271,14 @@ static int Open( vlc_object_t *p_this )
VLC_THREAD_PRIORITY_LOW))
p_sys->rrd.stream = rrd;
else
{
fclose (rrd);
p_sys->rrd.stream = NULL;
}
}
}
else
p_sys->rrd.stream = NULL;
free( psz_rrd_file );
p_sys->p_sub = msg_Subscribe( p_intf );
......
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