Changeset 12dcce3f4c95bc1db8cdfda241ff6a38ac92c7b0

Show
Ignore:
Timestamp:
03/05/07 22:42:54 (2 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1178224974 +0000
git-parent:

[8d3912c26d9eecbf3d74020d28a0c11a0ba5dc22]

git-author:
Gildas Bazin <gbazin@videolan.org> 1178224974 +0000
Message:

* src/input/stream.c: fix input-list code.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/input/stream.c

    r9b6b0df r12dcce3  
    224224stream_t *stream_AccessNew( access_t *p_access, vlc_bool_t b_quick ) 
    225225{ 
    226     stream_t *s = vlc_stream_create( p_access ); 
     226    stream_t *s = vlc_stream_create( VLC_OBJECT(p_access) ); 
    227227    stream_sys_t *p_sys; 
    228228    char *psz_list; 
     
    288288            { 
    289289                access_t *p_tmp = access2_New( p_access, p_access->psz_access, 
    290                                                0, psz_name, 0 ); 
     290                                               "", psz_name, 0 ); 
    291291 
    292292                if( !p_tmp ) 
     
    16641664        msg_Dbg( s, "opening input `%s'", psz_name ); 
    16651665 
    1666         p_list_access = access2_New( s, p_access->psz_access, 0, psz_name, 0 ); 
     1666        p_list_access = access2_New( s, p_access->psz_access, "", psz_name, 0 ); 
    16671667 
    16681668        if( !p_list_access ) return 0; 
     
    17361736        msg_Dbg( s, "opening input `%s'", psz_name ); 
    17371737 
    1738         p_list_access = access2_New( s, p_access->psz_access, 0, psz_name, 0 ); 
     1738        p_list_access = access2_New( s, p_access->psz_access, "", psz_name, 0 ); 
    17391739 
    17401740        if( !p_list_access ) return 0; 
     
    17931793        { 
    17941794            p_list_access = 
    1795                 access2_New( s, p_access->psz_access, 0, psz_name, 0 ); 
     1795                access2_New( s, p_access->psz_access, "", psz_name, 0 ); 
    17961796        } 
    17971797        else if( i != p_sys->i_list_index )