Changeset 7976d6454b3830dd3ebffd583ea7d0564ab4c65a
- 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
| r5e44df1 |
r7976d64 |
|
| 23 | 23 | Arnaud Gomes-do-Vale <arnaud at carrosse.frmug.org> - autoconf patches |
|---|
| 24 | 24 | Arwed v. Merkatz <v.merkatz at gmx dot net> - Gamma correction for adjust filter |
|---|
| | 25 | Aurelien - Patch for modules/stream_output/rtp.c proper test for NULL |
|---|
| 25 | 26 | Basil Achermann <vlc at acherma dot com> - Patch to handle esc and space key events from VLCControl (OSX) |
|---|
| 26 | 27 | Barak Ori <barakori at gmail dot com> - Bidi fixes |
|---|
| r816e9b2 |
r7976d64 |
|
| 1649 | 1649 | int i; |
|---|
| 1650 | 1650 | |
|---|
| 1651 | | if( psz_session ) return NULL; |
|---|
| | 1651 | if( !psz_session ) return NULL; |
|---|
| 1652 | 1652 | |
|---|
| 1653 | 1653 | for( i = 0; i < p_stream->p_sys->i_rtsp; i++ ) |
|---|