Changeset 5c2b06f2707680a1c5d5388e906c6afb953381d8

Show
Ignore:
Timestamp:
11/03/04 00:41:36 (5 years ago)
Author:
Laurent Aimar <fenrir@videolan.org>
git-committer:
Laurent Aimar <fenrir@videolan.org> 1078962096 +0000
git-parent:

[d88930e73070ac6a2c83c26ca2b92148cd80ebf6]

git-author:
Laurent Aimar <fenrir@videolan.org> 1078962096 +0000
Message:
  • stream_output.c: delete meta informations after the stream out chain.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/stream_output/stream_output.c

    r09ba73c r5c2b06f  
    162162    vlc_object_detach( p_sout ); 
    163163 
     164    /* remove the stream out chain */ 
     165    sout_stream_delete( p_sout->p_stream ); 
     166 
    164167    /* *** free all string *** */ 
    165168    FREE( p_sout->psz_sout ); 
    166169    FREE( p_sout->psz_chain ); 
    167170 
     171    /* delete meta */ 
    168172    if( p_sout->p_meta ) 
    169173    { 
     
    171175    } 
    172176 
    173     sout_stream_delete( p_sout->p_stream ); 
    174177    vlc_mutex_destroy( &p_sout->lock ); 
    175178