Commit 00d044a3 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

vlm: No need to vlc_object_kill() nor vlc_thread_join() in destructor.

parent 1619a9c8
...@@ -182,9 +182,6 @@ void vlm_Delete( vlm_t *p_vlm ) ...@@ -182,9 +182,6 @@ void vlm_Delete( vlm_t *p_vlm )
*****************************************************************************/ *****************************************************************************/
static void vlm_Destructor( vlm_t *p_vlm ) static void vlm_Destructor( vlm_t *p_vlm )
{ {
vlc_object_kill( p_vlm );
vlc_thread_join( p_vlm );
vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS ); vlm_ControlInternal( p_vlm, VLM_CLEAR_MEDIAS );
TAB_CLEAN( p_vlm->i_media, p_vlm->media ); TAB_CLEAN( p_vlm->i_media, p_vlm->media );
......
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