Changeset 3b8c56cc792ccb1ce15b615ab2dfeeafab07048a
- Timestamp:
- 06/18/08 11:39:22
(3 months ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1213781962 +0200
- git-parent:
[a2174f04844383afce9277afc1fda717f24f714e]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1213553707 +0200
- Message:
Remove silly out of memory message in out of memory situation.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r53c7457 |
r3b8c56c |
|
| 128 | 128 | p_vout->p_sys = malloc( sizeof( vout_sys_t ) ); |
|---|
| 129 | 129 | if( p_vout->p_sys == NULL ) |
|---|
| 130 | | { |
|---|
| 131 | | msg_Err( p_vout, "out of memory" ); |
|---|
| 132 | 130 | return VLC_ENOMEM; |
|---|
| 133 | | } |
|---|
| 134 | 131 | |
|---|
| 135 | 132 | p_vout->pf_init = Init; |
|---|
| r2085fb0 |
r3b8c56c |
|
| 80 | 80 | p_filter->p_sys = malloc( sizeof( filter_sys_t ) ); |
|---|
| 81 | 81 | if( p_filter->p_sys == NULL ) |
|---|
| 82 | | { |
|---|
| 83 | | msg_Err( p_filter, "out of memory" ); |
|---|
| 84 | 82 | return VLC_ENOMEM; |
|---|
| 85 | | } |
|---|
| 86 | 83 | |
|---|
| 87 | 84 | p_filter->pf_video_filter = Filter; |
|---|
| r7640ddc |
r3b8c56c |
|
| 246 | 246 | p_vout = vlc_object_create( p_parent, VLC_OBJECT_VOUT ); |
|---|
| 247 | 247 | if( p_vout == NULL ) |
|---|
| 248 | | { |
|---|
| 249 | | msg_Err( p_parent, "out of memory" ); |
|---|
| 250 | 248 | return NULL; |
|---|
| 251 | | } |
|---|
| 252 | 249 | |
|---|
| 253 | 250 | /* Initialize pictures - translation tables and functions |
|---|