Changeset 5a4f82600755445667eb01c4ec4b818051e938b7

Show
Ignore:
Timestamp:
08/13/06 16:31:02 (2 years ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1155479462 +0000
git-parent:

[87de74a84516cce295b3bd8bedbb9fd45c8dc292]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1155479462 +0000
Message:

Fix memory leak

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/audio_filter/converter/a52tofloat32.c

    rde6aa43 r5a4f826  
    438438 
    439439    /* Allocate the memory needed to store the module's structure */ 
    440     p_sys = p_filter->p_sys = malloc( sizeof(filter_sys_t) ); 
    441     if( p_sys == NULL ) 
    442     { 
    443         msg_Err( p_filter, "out of memory" ); 
    444         return VLC_EGENERIC; 
    445     } 
    446  
    447     /* Allocate the memory needed to store the module's structure */ 
    448440    p_filter->p_sys = p_sys = malloc( sizeof(filter_sys_t) ); 
    449441    if( p_sys == NULL )