1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

Fix unitialized value

This commit is contained in:
Rémi Denis-Courmont 2008-10-12 21:50:35 +03:00
parent 6ea07c2e90
commit a9d31e8c1f

View File

@ -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 );