Commit cd2cf602 authored by Rémi Duraffort's avatar Rémi Duraffort

podcast: fix missing release.

parent 78c6195f
/***************************************************************************** /*****************************************************************************
* podcast.c: Podcast services discovery module * podcast.c: Podcast services discovery module
***************************************************************************** *****************************************************************************
* Copyright (C) 2005 the VideoLAN team * Copyright (C) 2005-2009 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Antoine Cellerier <dionoea -at- videolan -dot- org> * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
...@@ -132,6 +132,9 @@ static int Open( vlc_object_t *p_this ) ...@@ -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)) 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); free (p_sys);
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment