Changeset e4e08275d001539723a3627586e4aa6de87b88ba

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

[9b87946bde7aacd0d1b31cde672331508281d655]

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

Fix unitialized value.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/audio_filter/resampler/bandlimited.c

    r928bf10 re4e0827  
    136136    /* Allocate the memory needed to store the module's structure */ 
    137137    p_sys = malloc( sizeof(filter_sys_t) ); 
    138     p_filter->p_sys = (struct aout_filter_sys_t *)p_sys; 
    139138    if( p_sys == NULL ) 
    140139        return VLC_ENOMEM; 
     140    p_filter->p_sys = (struct aout_filter_sys_t *)p_sys; 
    141141 
    142142    /* Calculate worst case for the length of the filter wing */ 
     
    157157 
    158158    p_sys->i_old_wing = 0; 
     159    p_sys->b_filter2 = false;           /* It seams to be a good valuefor this module */ 
    159160    p_filter->pf_do_work = DoWork; 
    160161