]> git.sesse.net Git - vlc/blobdiff - include/vlc_access.h
maven2 project structure
[vlc] / include / vlc_access.h
index 1fbc2484b1c61afa54982fac9a564673b2e97dba..8a9b006e8592ebe83b85e1be9f79c699287978cb 100644 (file)
@@ -120,6 +120,7 @@ struct access_t
 static inline int access2_vaControl( access_t *p_access, int i_query, va_list args )
 {
     if( !p_access ) return VLC_EGENERIC;
+    assert( p_access->pf_control );
     return p_access->pf_control( p_access, i_query, args );
 }