1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00

Fix memleak

This commit is contained in:
Clément Stenac 2006-02-04 15:28:36 +00:00
parent 69fcb41b73
commit b41bfdb8bb

View File

@ -271,6 +271,9 @@ int playlist_Destroy( playlist_t * p_playlist )
free( p_view );
}
if( p_playlist->p_stats )
free( p_playlist->p_stats );
vlc_mutex_destroy( &p_playlist->gc_lock );
vlc_object_destroy( p_playlist->p_preparse );
vlc_object_destroy( p_playlist );