Commit b41bfdb8 authored by Clément Stenac's avatar Clément Stenac

Fix memleak

parent 69fcb41b
......@@ -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 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment