Changeset 1e36b84e0ce097f69af64dc747b72dab1509cf7c

Show
Ignore:
Timestamp:
27/03/08 00:47:42 (7 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1206575262 +0100
git-parent:

[d51dba48f9065eba4c167d21fe5258807e0da43f]

git-author:
Rafaël Carré <funman@videolan.org> 1206575262 +0100
Message:

Fix a memory leak

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/services_discovery/hal.c

    r8ca4ff0 r1e36b84  
    208208    p_udi_entry->psz_udi = strdup( psz_device ); 
    209209    if( !p_udi_entry->psz_udi ) 
    210         return; 
     210    { 
     211        free( p_udi_entry ); 
     212        return; 
     213    } 
    211214 
    212215    vlc_gc_incref( p_input );