]> git.sesse.net Git - vlc/commitdiff
No point in checking vlc_object_alive there
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 3 Sep 2008 18:52:08 +0000 (21:52 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 3 Sep 2008 19:35:06 +0000 (22:35 +0300)
modules/access/vcdx/intf.c

index 24527e0891755680d54d2d76030fce0fd6c355df..38be5c7abda9eb0223fd284ddbfc282b73d8b45d 100644 (file)
@@ -298,8 +298,8 @@ RunIntf( intf_thread_t *p_intf )
         }
 
 
-      /* Wait a bit */
-      msleep( INTF_IDLE_SLEEP );
+        /* Wait a bit */
+        msleep( INTF_IDLE_SLEEP );
     }
 
     if( p_vout )
@@ -317,35 +317,24 @@ RunIntf( intf_thread_t *p_intf )
 static int InitThread( intf_thread_t * p_intf )
 {
     /* We might need some locking here */
-    if( vlc_object_alive (p_intf) )
-    {
-        input_thread_t * p_input;
+    input_thread_t * p_input;
 
-        p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_PARENT );
+    p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_PARENT );
 
-        /* Maybe the input just died */
-        if( p_input == NULL )
-        {
-            return VLC_EGENERIC;
-        }
-
-        vlc_mutex_lock( &p_intf->change_lock );
+    /* Maybe the input just died */
+    if( p_input == NULL )
+        return VLC_EGENERIC;
 
-        p_intf->p_sys->p_input     = p_input;
-        p_intf->p_sys->p_vcdplayer = NULL;
+    vlc_mutex_lock( &p_intf->change_lock );
 
-        p_intf->p_sys->b_move  = false;
-        p_intf->p_sys->b_click = false;
-        p_intf->p_sys->b_key_pressed = false;
+    p_intf->p_sys->p_input     = p_input;
+    p_intf->p_sys->p_vcdplayer = NULL;
 
-        vlc_mutex_unlock( &p_intf->change_lock );
+    p_intf->p_sys->b_move  = false;
+    p_intf->p_sys->b_click = false;
+    p_intf->p_sys->b_key_pressed = false;
 
-        return VLC_SUCCESS;
-    }
-    else
-    {
-        return VLC_EGENERIC;
-    }
+    vlc_mutex_unlock( &p_intf->change_lock );
 }
 
 /*****************************************************************************