From adec5472ece528e16c993ab60a7aeac34e2bb967 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Tue, 8 Jul 2008 22:57:05 +0200 Subject: [PATCH] macosx: The playlist is unlocked at this time, so playlist_Control() needs to lock it. This fixes an input and input item leak. IMHO, such typo are so easy, we need to fix that up. (macosx module is full of those). --- modules/gui/macosx/playlist.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index 6fe2531aed..9be1f6b2a2 100644 --- a/modules/gui/macosx/playlist.m +++ b/modules/gui/macosx/playlist.m @@ -720,7 +720,7 @@ p_item = NULL; } } - playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, true, p_node, p_item ); + playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, false, p_node, p_item ); } vlc_object_release( p_playlist ); } -- 2.39.2