Changeset 7976d6454b3830dd3ebffd583ea7d0564ab4c65a

Show
Ignore:
Timestamp:
23/10/06 21:05:47 (2 years ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1161630347 +0000
git-parent:

[54f116c79a9d6d96a2caf578d6b580f575d05d45]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1161630347 +0000
Message:

Patch by aurelien: properly test for NULL.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • THANKS

    r5e44df1 r7976d64  
    2323Arnaud Gomes-do-Vale <arnaud at carrosse.frmug.org> - autoconf patches 
    2424Arwed v. Merkatz <v.merkatz at gmx dot net> - Gamma correction for adjust filter 
     25Aurelien - Patch for modules/stream_output/rtp.c proper test for NULL 
    2526Basil Achermann <vlc at acherma dot com> - Patch to handle esc and space key events from VLCControl (OSX) 
    2627Barak Ori <barakori at gmail dot com> - Bidi fixes 
  • modules/stream_out/rtp.c

    r816e9b2 r7976d64  
    16491649    int i; 
    16501650 
    1651     if( psz_session ) return NULL; 
     1651    if( !psz_session ) return NULL; 
    16521652 
    16531653    for( i = 0; i < p_stream->p_sys->i_rtsp; i++ )