Changeset 49c878c55d7e70fbae2510c4242ad3eacdc16e06

Show
Ignore:
Timestamp:
16/07/07 22:45:20 (1 year ago)
Author:
Laurent Aimar <fenrir@videolan.org>
git-committer:
Laurent Aimar <fenrir@videolan.org> 1184618720 +0000
git-parent:

[0fb0c8e456029a8f64ea9fc3a8b49be9f31f27a5]

git-author:
Laurent Aimar <fenrir@videolan.org> 1184618720 +0000
Message:

Fixed access to (potentially) uninitialized data (close #1246, reported by aurelien).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/asf/libasf.c

    r8cf44c1 r49c878c  
    269269    uint8_t  *p_peek; 
    270270 
    271     if( ( i_peek = stream_Peek( s, &p_peek,  92) ) < 92
     271    if( ( i_peek = stream_Peek( s, &p_peek,  104) ) < 104
    272272    { 
    273273       return VLC_EGENERIC;