]> git.sesse.net Git - vlc/commitdiff
Gestures: Make sure we that p_playlist is valid, and correctly release p_input and...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 25 Mar 2007 12:08:36 +0000 (12:08 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 25 Mar 2007 12:08:36 +0000 (12:08 +0000)
modules/control/gestures.c

index 678aed2063817c831bd06cc0a3c229519eecdd72..fa25d73fe48d76ca42a517b6690219b53f79c327 100644 (file)
@@ -166,11 +166,6 @@ static void RunIntf( intf_thread_t *p_intf )
 {
     playlist_t * p_playlist = NULL;
 
-    vlc_mutex_lock( &p_intf->change_lock );
-    p_intf->p_sys->p_vout = NULL;
-    vlc_mutex_unlock( &p_intf->change_lock );
-
-
     if( InitThread( p_intf ) < 0 )
     {
         msg_Err( p_intf, "can't initialize interface thread" );
@@ -227,6 +222,9 @@ static void RunIntf( intf_thread_t *p_intf )
                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
                                               FIND_ANYWHERE );
 
+                   if( !p_playlist )
+                        break;
+
                     p_input = input_from_playlist( p_playlist );
 
                     if( !p_input )
@@ -324,12 +322,16 @@ static void RunIntf( intf_thread_t *p_intf )
                    i_count = list.p_list->i_count;
                    if( i_count <= 1 )
                    {
+                       vlc_object_release( p_input );
+                       vlc_object_release( p_playlist );
                        continue;
                    }
                    for( i = 0; i < i_count; i++ )
                    {
                        if( val.i_int == list.p_list->p_values[i].i_int )
                        {
+                           vlc_object_release( p_input );
+                           vlc_object_release( p_playlist );
                            break;
                        }
                    }
@@ -377,7 +379,6 @@ static void RunIntf( intf_thread_t *p_intf )
                         vlc_object_release( p_playlist );
                         break;
                     }
-                    
                     var_Get( p_input, "spu-es", &val );
 
                     var_Change( p_input, "spu-es", VLC_VAR_GETCHOICES,
@@ -385,12 +386,16 @@ static void RunIntf( intf_thread_t *p_intf )
                     i_count = list.p_list->i_count;
                     if( i_count <= 1 )
                     {
+                        vlc_object_release( p_input );
+                        vlc_object_release( p_playlist );
                         continue;
                     }
                     for( i = 0; i < i_count; i++ )
                     {
                         if( val.i_int == list.p_list->p_values[i].i_int )
                         {
+                            vlc_object_release( p_input );
+                            vlc_object_release( p_playlist );
                             break;
                         }
                     }