From cd2cf6027b5775196abd36322eec406bf3a68054 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Tue, 24 Mar 2009 21:19:34 +0100 Subject: [PATCH] podcast: fix missing release. --- modules/services_discovery/podcast.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/services_discovery/podcast.c b/modules/services_discovery/podcast.c index 6d12d8a896..021ca45fc4 100644 --- a/modules/services_discovery/podcast.c +++ b/modules/services_discovery/podcast.c @@ -1,7 +1,7 @@ /***************************************************************************** * podcast.c: Podcast services discovery module ***************************************************************************** - * Copyright (C) 2005 the VideoLAN team + * Copyright (C) 2005-2009 the VideoLAN team * $Id$ * * Authors: Antoine Cellerier @@ -132,6 +132,9 @@ static int Open( vlc_object_t *p_this ) if (vlc_clone (&p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW)) { + var_DelCallback( p_sd, "podcast-urls", UrlsChange, p_sys ); + vlc_cond_destroy( &p_sys->wait ); + vlc_mutex_destroy( &p_sys->lock ); free (p_sys); return VLC_EGENERIC; } -- 2.39.2