Commit 66fab58c authored by Erwan Tulou's avatar Erwan Tulou

MacOs and Windows(skins): don't kill and join twice the same thread

parent 0a8e0636
...@@ -140,11 +140,8 @@ int intf_RunThread( intf_thread_t *p_intf ) ...@@ -140,11 +140,8 @@ int intf_RunThread( intf_thread_t *p_intf )
} }
RunInterface( VLC_OBJECT(p_intf) ); RunInterface( VLC_OBJECT(p_intf) );
/* Make sure our MonitorLibVLCDeath thread exit */
vlc_object_kill( p_intf );
/* It is monitoring libvlc, not the p_intf */ /* It is monitoring libvlc, not the p_intf */
vlc_object_kill( p_intf->p_libvlc ); vlc_object_kill( p_intf->p_libvlc );
vlc_thread_join( p_intf );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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