Changeset 3f47d4769d757a7ec2007f1ff9ff16648456e71a
- Timestamp:
- 05/09/08 14:59:03
(1 week ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1210337943 +0200
- git-parent:
[2d278d72dddc1d3be16f60730fba8ef01334e5ee]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1210337506 +0200
- Message:
Remove silly "out of memory" messages.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r27d483e |
r3f47d47 |
|
| 312 | 312 | p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) ); |
|---|
| 313 | 313 | if( !p_intf->p_sys ) |
|---|
| 314 | | { |
|---|
| 315 | | msg_Err( p_intf, "out of memory" ); |
|---|
| 316 | 314 | return VLC_ENOMEM; |
|---|
| 317 | | }; |
|---|
| 318 | 315 | memset( p_sys, 0, sizeof(intf_sys_t) ); |
|---|
| 319 | 316 | |
|---|
| … | … | |
| 322 | 319 | { |
|---|
| 323 | 320 | free( p_intf->p_sys ); |
|---|
| 324 | | msg_Err( p_intf, "out of memory" ); |
|---|
| 325 | 321 | return VLC_ENOMEM; |
|---|
| 326 | 322 | } |
|---|
| … | … | |
| 334 | 330 | free( p_intf->p_sys->p_style ); |
|---|
| 335 | 331 | free( p_intf->p_sys ); |
|---|
| 336 | | msg_Err( p_intf, "out of memory" ); |
|---|
| 337 | 332 | return VLC_ENOMEM; |
|---|
| 338 | 333 | } |
|---|