Changeset 3b8c56cc792ccb1ce15b615ab2dfeeafab07048a

Show
Ignore:
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
  • modules/video_filter/clone.c

    r53c7457 r3b8c56c  
    128128    p_vout->p_sys = malloc( sizeof( vout_sys_t ) ); 
    129129    if( p_vout->p_sys == NULL ) 
    130     { 
    131         msg_Err( p_vout, "out of memory" ); 
    132130        return VLC_ENOMEM; 
    133     } 
    134131 
    135132    p_vout->pf_init = Init; 
  • modules/video_filter/invert.c

    r2085fb0 r3b8c56c  
    8080    p_filter->p_sys = malloc( sizeof( filter_sys_t ) ); 
    8181    if( p_filter->p_sys == NULL ) 
    82     { 
    83         msg_Err( p_filter, "out of memory" ); 
    8482        return VLC_ENOMEM; 
    85     } 
    8683 
    8784    p_filter->pf_video_filter = Filter; 
  • src/video_output/video_output.c

    r7640ddc r3b8c56c  
    246246    p_vout = vlc_object_create( p_parent, VLC_OBJECT_VOUT ); 
    247247    if( p_vout == NULL ) 
    248     { 
    249         msg_Err( p_parent, "out of memory" ); 
    250248        return NULL; 
    251     } 
    252249 
    253250    /* Initialize pictures - translation tables and functions