Show
Ignore:
Timestamp:
04/08/08 21:11:48 (4 months ago)
Author:
Rémi Duraffort <ivoire@videolan.org>
git-committer:
Rémi Duraffort <ivoire@videolan.org> 1217877108 +0200
git-parent:

[e7832276fc7b3c70da6c5c79d167bb30fe597625]

git-author:
Rémi Duraffort <ivoire@videolan.org> 1217877108 +0200
Message:

Remove stupid test and error message.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/visualization/visual/effects.c

    re783227 r00cc9dc  
    316316 
    317317    free( p_s16_buff ); 
    318     p_s16_buff = NULL; 
    319  
    320318    free( height ); 
    321319 
  • modules/visualization/visual/visual.c

    r60564df r00cc9dc  
    204204    p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) ); 
    205205    if( p_sys == NULL ) 
    206     { 
    207         msg_Err( p_filter, "out of memory" ); 
    208206        return VLC_EGENERIC; 
    209     } 
    210207 
    211208    p_sys->i_height = config_GetInt( p_filter , "effect-height"); 
     
    297294    } 
    298295 
    299     if( psz_effects ) 
    300     { 
    301         free( psz_effects ); 
    302     } 
     296    free( psz_effects ); 
    303297 
    304298    if( !p_sys->i_effect )