Commit 6d9e92da authored by Rafaël Carré's avatar Rafaël Carré

Revert [cd2de36f]

assert that pf_control is available
parent 7fcfedbc
......@@ -119,7 +119,8 @@ struct access_t
static inline int access2_vaControl( access_t *p_access, int i_query, va_list args )
{
if( !p_access || !p_access->pf_control ) return VLC_EGENERIC;
if( !p_access ) return VLC_EGENERIC;
assert( p_access->pf_control );
return p_access->pf_control( p_access, i_query, args );
}
......
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