Commit 23c72b3d authored by Cyril Deguet's avatar Cyril Deguet

* src/skin_main.cpp: do not delete the input a second time !

parent a2ce62f8
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* skin_main.cpp * skin_main.cpp
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: skin_main.cpp,v 1.8 2004/02/29 14:05:14 asmax Exp $ * $Id: skin_main.cpp,v 1.9 2004/02/29 17:36:55 asmax Exp $
* *
* Authors: Cyril Deguet <asmax@via.ecp.fr> * Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulire <ipkiss@via.ecp.fr> * Olivier Teulire <ipkiss@via.ecp.fr>
...@@ -141,11 +141,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -141,11 +141,6 @@ static void Close( vlc_object_t *p_this )
VlcProc::destroy( p_intf ); VlcProc::destroy( p_intf );
OSFactory::destroy( p_intf ); OSFactory::destroy( p_intf );
if( p_intf->p_sys->p_input )
{
vlc_object_release( p_intf->p_sys->p_input );
}
if( p_intf->p_sys->p_playlist ) if( p_intf->p_sys->p_playlist )
{ {
vlc_object_release( p_intf->p_sys->p_playlist ); vlc_object_release( p_intf->p_sys->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