]> git.sesse.net Git - vlc/commitdiff
Hotkeys: playlist locking
authorJakob Leben <jleben@videolan.org>
Fri, 11 Jun 2010 17:19:17 +0000 (19:19 +0200)
committerJakob Leben <jleben@videolan.org>
Fri, 11 Jun 2010 17:45:33 +0000 (19:45 +0200)
untested

modules/control/hotkeys.c

index 5a0664946c1b45ca622c83052e7ec82c9afb1dea..810fffa31181f85083745fecf23e7869a6d8cc16 100644 (file)
@@ -963,22 +963,27 @@ static void PlayBookmark( intf_thread_t *p_intf, int i_num )
 static void SetBookmark( intf_thread_t *p_intf, int i_num )
 {
     char *psz_bookmark_name;
+    char *psz_uri = NULL;
     if( asprintf( &psz_bookmark_name, "bookmark%i", i_num ) == -1 )
         return;
 
     playlist_t *p_playlist = pl_Get( p_intf );
     var_Create( p_intf, psz_bookmark_name,
                 VLC_VAR_STRING|VLC_VAR_DOINHERIT );
+
+    PL_LOCK;
     playlist_item_t * p_item = playlist_CurrentPlayingItem( p_playlist );
+    if( p_item ) psz_uri = input_item_GetURI( p_item->p_input );
+    PL_UNLOCK;
+
     if( p_item )
     {
-        char *psz_uri = input_item_GetURI( p_item->p_input );
         config_PutPsz( p_intf, psz_bookmark_name, psz_uri);
         msg_Info( p_intf, "setting playlist bookmark %i to %s", i_num, psz_uri);
-        free( psz_uri );
         config_SaveConfigFile( p_intf, "hotkeys" );
     }
 
+    free( psz_uri );
     free( psz_bookmark_name );
 }