]> git.sesse.net Git - vlc/commitdiff
playlist: playlist_LiveSearchUpdate is locked, no need to signal_maybe().
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 12 Aug 2008 22:19:11 +0000 (00:19 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 12 Aug 2008 22:57:26 +0000 (00:57 +0200)
src/playlist/search.c

index b3f82233a109d313afe96b5cc90556883f4a3e80..6f81a3db4c3b7e4e4624b7aa7119521e6c2b9ef7 100644 (file)
@@ -172,6 +172,6 @@ int playlist_LiveSearchUpdate( playlist_t *p_playlist, playlist_item_t *p_root,
     PL_ASSERT_LOCKED;
     p_playlist->b_reset_currently_playing = true;
     playlist_LiveSearchUpdateInternal( p_playlist, p_root, psz_string );
-    vlc_object_signal_maybe( VLC_OBJECT(p_playlist) );
+    vlc_object_signal_unlocked( p_playlist );
     return VLC_SUCCESS;
 }