From 756001fb493805399a1802dfd0b169dee89e635d Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Mon, 21 Jul 2008 18:40:02 +0200 Subject: [PATCH] Use pl_Yield and pl_Release everywhere. --- modules/video_output/msw/events.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/video_output/msw/events.c b/modules/video_output/msw/events.c index 486791722e..7f1aefc594 100644 --- a/modules/video_output/msw/events.c +++ b/modules/video_output/msw/events.c @@ -861,12 +861,11 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message, /* the user wants to close the window */ case WM_CLOSE: { - playlist_t * p_playlist = vlc_object_find( p_vout, - VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); + playlist_t * p_playlist = pl_Yield( p_vout ); if( p_playlist ) { playlist_Stop( p_playlist ); - vlc_object_release( p_playlist ); + pl_Release( p_playlist ); } return 0; } -- 2.39.2