From 89815e8df44c28f589c5248a7529f5383c603a85 Mon Sep 17 00:00:00 2001 From: Antoine Cellerier Date: Thu, 23 Aug 2007 21:33:50 +0000 Subject: [PATCH] Fix xosd (due to bug introduced in [17267] by funman). --- modules/misc/notify/xosd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/misc/notify/xosd.c b/modules/misc/notify/xosd.c index 4dd0a94bb3..531b095ee1 100644 --- a/modules/misc/notify/xosd.c +++ b/modules/misc/notify/xosd.c @@ -213,7 +213,7 @@ static void Run( intf_thread_t *p_intf ) p_intf->p_sys->b_need_update = VLC_FALSE; p_playlist = pl_Yield( p_intf ); - if( !playlist_IsEmpty( p_playlist ) ) + if( playlist_IsEmpty( p_playlist ) ) { vlc_object_release( p_playlist ); continue; -- 2.39.2