Skip to content

Commit ff7bb70

Browse files
committed
dvb: don't preparse
1 parent bc8418f commit ff7bb70

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/access/dvb/access.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ static int Open( vlc_object_t *p_this )
127127
access_t *p_access = (access_t*)p_this;
128128
access_sys_t *p_sys;
129129

130+
if( p_access->b_preparsing )
131+
return VLC_EGENERIC;
132+
130133
p_access->p_sys = p_sys = calloc( 1, sizeof( access_sys_t ) );
131134
if( !p_sys )
132135
return VLC_ENOMEM;

0 commit comments

Comments
 (0)