Changeset 6ec8b6f07e56d2dc51a7e6d6f95f2595f57dd5dc
- Timestamp:
- 26/10/07 17:07:48
(1 year ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1193411268 +0000
- git-parent:
[3baa07adc994f06ea8208833e25af82d5e07a405]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1193411268 +0000
- Message:
Check malloc return value.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r56ec18e |
r6ec8b6f |
|
| 173 | 173 | |
|---|
| 174 | 174 | p_fifo = malloc( sizeof( block_fifo_t ) ); |
|---|
| | 175 | if( !p_fifo ) return NULL; |
|---|
| 175 | 176 | vlc_mutex_init( p_obj, &p_fifo->lock ); |
|---|
| 176 | 177 | vlc_cond_init( p_obj, &p_fifo->wait ); |
|---|