Commit 8eae4029 authored by Laurent Aimar's avatar Laurent Aimar

Fix quit sequence in hotkeys.

parent ccd6d2b7
...@@ -195,9 +195,8 @@ static void Run( intf_thread_t *p_intf ) ...@@ -195,9 +195,8 @@ static void Run( intf_thread_t *p_intf )
/* Quit */ /* Quit */
if( i_action == ACTIONID_QUIT ) if( i_action == ACTIONID_QUIT )
{ {
playlist_Stop( p_playlist );
vlc_object_kill( p_intf->p_libvlc ); vlc_object_kill( p_intf->p_libvlc );
vlc_object_kill( p_intf );
ClearChannels( p_intf, p_vout ); ClearChannels( p_intf, p_vout );
vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Quit" ) ); vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Quit" ) );
if( p_vout ) if( p_vout )
......
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