From b309b351561e8bc00e4dc1808a03f8b39dcf19e5 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Mon, 22 Dec 2003 23:46:23 +0000 Subject: [PATCH] * Fix a leak in goom module that caused all the pictures of a vout to be unavailable after several songs. --- modules/visualization/goom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/visualization/goom.c b/modules/visualization/goom.c index bbfe582d2b..64906a180e 100644 --- a/modules/visualization/goom.c +++ b/modules/visualization/goom.c @@ -2,7 +2,7 @@ * goom.c: based on libgoom (see http://ios.free.fr/?page=projet&quoi=1) ***************************************************************************** * Copyright (C) 2003 VideoLAN - * $Id: goom.c,v 1.2 2003/08/23 22:49:50 fenrir Exp $ + * $Id: goom.c,v 1.3 2003/12/22 23:46:23 hartman Exp $ * * Authors: Laurent Aimar * @@ -251,7 +251,7 @@ static void Thread( vlc_object_t *p_this ) msleep( VOUT_OUTMEM_SLEEP ); } - if( p_thread->b_die || p_pic == NULL ) + if( p_pic == NULL ) { break; } -- 2.39.5