Changeset c35af423b5a87c93ab63e39ad90332e10846bd9f
- Timestamp:
- 05/06/08 13:11:48
(4 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1210072308 +0200
- git-parent:
[f4bdd3effb57aa42c20dafcaf001f97b7b8718c9]
- git-author:
- Rafaël Carré <funman@videolan.org> 1210072283 +0200
- Message:
Check malloc return value
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9df2848 |
rc35af42 |
|
| 215 | 215 | /* *** create a packetizer input *** */ |
|---|
| 216 | 216 | p_input = malloc( sizeof( sout_packetizer_input_t ) ); |
|---|
| | 217 | if( !p_input ) return NULL; |
|---|
| 217 | 218 | p_input->p_sout = p_sout; |
|---|
| 218 | 219 | p_input->p_fmt = p_fmt; |
|---|