]> git.sesse.net Git - vlc/blobdiff - modules/codec/cmml/intf.c
s/pl_Yield/pl_Hold/
[vlc] / modules / codec / cmml / intf.c
index 389465c4429468a892f143cf00b3718339ccf49c..a93fe445a5e4ccf02880abeea17b008ba0d5a191 100644 (file)
@@ -437,7 +437,7 @@ static void FollowAnchor ( intf_thread_t *p_intf )
         mtime_t i_seconds;
         vlc_value_t time;
 
-        p_playlist = pl_Yield( p_intf );
+        p_playlist = pl_Hold( p_intf );
 
         /* Get new URL */
         p_current_item = p_playlist->status.p_item;
@@ -641,7 +641,7 @@ void GoBack( intf_thread_t *p_intf )
 #endif
 
     /* Find the playlist */
-    p_playlist = pl_Yield( p_intf );
+    p_playlist = pl_Hold( p_intf );
 
     /* Retrieve navigation history from playlist */
     if( var_Get( p_playlist, "navigation-history", &history ) != VLC_SUCCESS ||
@@ -713,7 +713,7 @@ void GoForward( intf_thread_t *p_intf )
 #endif
 
     /* Find the playlist */
-    p_playlist = pl_Yield( p_intf );
+    p_playlist = pl_Hold( p_intf );
 
     /* Retrieve navigation history from playlist */
     if( var_Get( p_playlist, "navigation-history", &history ) != VLC_SUCCESS ||