Changeset 6d9e92da983e3ae91b09ce983aae5b851a6d884c

Show
Ignore:
Timestamp:
13/03/08 16:18:35 (9 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1205421515 +0100
git-parent:

[7fcfedbc4fd304c5b383bcb598efa1312d9480af]

git-author:
Rafaël Carré <funman@videolan.org> 1205421515 +0100
Message:

Revert [cd2de36f617b57813c44fd94babd7fa952bccf8d]

assert that pf_control is available

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_access.h

    rcd2de36 r6d9e92d  
    120120static inline int access2_vaControl( access_t *p_access, int i_query, va_list args ) 
    121121{ 
    122     if( !p_access || !p_access->pf_control ) return VLC_EGENERIC; 
     122    if( !p_access ) return VLC_EGENERIC; 
     123    assert( p_access->pf_control ); 
    123124    return p_access->pf_control( p_access, i_query, args ); 
    124125}