Changeset 6837daf33dee17c0885820f21107757218501885

Show
Ignore:
Timestamp:
15/12/07 22:47:07 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1197755227 +0000
git-parent:

[e93bed1aa825a38e267ad3e6613104c604a2df3a]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1197755227 +0000
Message:

help module hack becomes even worst...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/libvlc-common.c

    r5ace50e r6837daf  
    306306    { 
    307307        vlc_object_detach( p_help_module ); 
    308         config_Free( p_help_module ); 
     308        p_help_module->p_config = NULL; 
     309        p_help_module->confsize = 0; 
    309310        vlc_object_destroy( p_help_module ); 
    310311        module_EndBank( p_libvlc ); 
     
    414415    if( b_exit ) 
    415416    { 
    416         config_Free( p_help_module )
     417        p_help_module->p_config = NULL; p_help_module->confsize = 0
    417418        vlc_object_destroy( p_help_module ); 
    418419        module_EndBank( p_libvlc ); 
     
    524525    if( b_exit ) 
    525526    { 
    526         config_Free( p_help_module )
     527        p_help_module->p_config = NULL; p_help_module->confsize = 0
    527528        vlc_object_destroy( p_help_module ); 
    528529        module_EndBank( p_libvlc ); 
     
    557558#endif 
    558559        vlc_object_detach( p_help_module ); 
    559         config_Free( p_help_module )
     560        p_help_module->p_config = NULL; p_help_module->confsize = 0
    560561        vlc_object_destroy( p_help_module ); 
    561562        module_EndBank( p_libvlc ); 
     
    565566    /* Hack: remove the help module here */ 
    566567    vlc_object_detach( p_help_module ); 
    567     config_Free( p_help_module )
     568    p_help_module->p_config = NULL; p_help_module->confsize = 0
    568569    vlc_object_destroy( p_help_module ); 
    569570    /* End hack */