]> git.sesse.net Git - vlc/commitdiff
Don't use the playlist if it has been destroyed
authorRafaël Carré <funman@videolan.org>
Thu, 8 May 2008 09:55:45 +0000 (11:55 +0200)
committerRafaël Carré <funman@videolan.org>
Thu, 8 May 2008 09:55:45 +0000 (11:55 +0200)
src/video_output/video_output.c

index 78eef306287d073d4c036d980353b1586c6749b4..d71fb1feea62bc3f126a88d3641885ca849bb82e 100644 (file)
@@ -509,12 +509,11 @@ static void vout_Destructor( vlc_object_t * p_this )
 #ifndef __APPLE__
     vout_thread_t *p_another_vout;
 
-    playlist_t *p_playlist = pl_Yield( p_vout );
-    if( p_playlist->b_die )
-    {
-        pl_Release( p_vout );
+    playlist_t *p_playlist = vlc_object_find( p_this->p_libvlc,
+                                        VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
+    if( !p_playlist )
         return;
-    }
+
     /* This is a dirty hack mostly for Linux, where there is no way to get the
      * GUI back if you closed it while playing video. This is solved in
      * Mac OS X, where we have this novelty called menubar, that will always
@@ -526,7 +525,7 @@ static void vout_Destructor( vlc_object_t * p_this )
         var_SetBool( p_playlist, "intf-show", true );
     else
         vlc_object_release( p_another_vout );
-    pl_Release( p_vout );
+    vlc_object_release( p_playlist );
 #endif
 }