From ba8f1f35e809572fb556818662bdf531a8a1c79a Mon Sep 17 00:00:00 2001 From: JP Dinger Date: Mon, 25 May 2009 14:38:34 +0200 Subject: [PATCH 1/1] Compile fix on windows -- vlc_mutex_init() now returns void. --- include/vlc_gcrypt.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/include/vlc_gcrypt.h b/include/vlc_gcrypt.h index cd5ffd5457..db054f42c3 100644 --- a/include/vlc_gcrypt.h +++ b/include/vlc_gcrypt.h @@ -44,12 +44,8 @@ static int gcry_vlc_mutex_init( void **p_sys ) if( p_lock == NULL) return ENOMEM; - i_val = vlc_mutex_init( p_lock ); - if( i_val ) - free( p_lock ); - else - *p_sys = p_lock; - return i_val; + vlc_mutex_init( p_lock ); + return VLC_SUCCESS; } static int gcry_vlc_mutex_destroy( void **p_sys ) -- 2.39.2