[vlc-devel] commit: Compile fix on windows -- vlc_mutex_init() now returns void. ( JP Dinger )

git version control git at videolan.org
Mon May 25 14:40:37 CEST 2009


vlc | branch: master | JP Dinger <jpd at videolan.org> | Mon May 25 14:38:34 2009 +0200| [ba8f1f35e809572fb556818662bdf531a8a1c79a] | committer: JP Dinger 

Compile fix on windows -- vlc_mutex_init() now returns void.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ba8f1f35e809572fb556818662bdf531a8a1c79a
---

 include/vlc_gcrypt.h |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/include/vlc_gcrypt.h b/include/vlc_gcrypt.h
index cd5ffd5..db054f4 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 )




More information about the vlc-devel mailing list