From 3a4de92b572fe75b489b4e00661648fddbcebcad Mon Sep 17 00:00:00 2001 From: Antoine Cellerier Date: Thu, 11 Feb 2010 20:01:13 +0100 Subject: [PATCH] Oops, sed isn't always enough. --- src/input/vlm.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/input/vlm.c b/src/input/vlm.c index 19f2a5635b..96197a1ca7 100644 --- a/src/input/vlm.c +++ b/src/input/vlm.c @@ -155,7 +155,6 @@ vlm_t *vlm_New ( vlc_object_t *p_this ) return NULL; } - vlc_mutex_init( &p_vlm->lock ); vlc_mutex_init( &p_vlm->lock ); vlc_cond_init_daytime( &p_vlm->wait ); p_vlm->i_id = 1; @@ -170,7 +169,6 @@ vlm_t *vlm_New ( vlc_object_t *p_this ) { vlc_cond_destroy( &p_vlm->wait ); vlc_mutex_destroy( &p_vlm->lock ); - vlc_mutex_destroy( &p_vlm->lock ); vlc_object_release( p_vlm ); vlc_mutex_unlock( &vlm_mutex ); return NULL; @@ -239,7 +237,6 @@ static void vlm_Destructor( vlm_t *p_vlm ) vlc_cond_destroy( &p_vlm->wait ); vlc_mutex_destroy( &p_vlm->lock ); - vlc_mutex_destroy( &p_vlm->lock ); } /***************************************************************************** -- 2.39.5