X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_gcrypt.h;h=4d94344ef1e9951de5ff3977f6e8b6b8f9dbc890;hb=8df851731c67de69001e66696c614a8e6e908fb5;hp=85029109348e0d6b9c27ffeac4d35c0c8dbdec97;hpb=ebd800345f87349ff51971ae88c56cb439da4dcf;p=vlc diff --git a/include/vlc_gcrypt.h b/include/vlc_gcrypt.h index 8502910934..4d94344ef1 100644 --- a/include/vlc_gcrypt.h +++ b/include/vlc_gcrypt.h @@ -38,18 +38,13 @@ GCRY_THREAD_OPTION_PTHREAD_IMPL; static int gcry_vlc_mutex_init( void **p_sys ) { - int i_val; vlc_mutex_t *p_lock = (vlc_mutex_t *)malloc( sizeof( vlc_mutex_t ) ); - 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 ); + *p_sys = p_lock; + return VLC_SUCCESS; } static int gcry_vlc_mutex_destroy( void **p_sys ) @@ -88,7 +83,19 @@ static const struct gcry_thread_cbs gcry_threads_vlc = */ static inline void vlc_gcrypt_init (void) { - vlc_mutex_t *lock = var_AcquireMutex ("gcrypt_mutex"); - gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_vlc); - vlc_mutex_unlock (lock); + /* This would need a process-wide static mutex with all libraries linking + * to a given instance of libgcrypt. We cannot do this as we have different + * plugins linking with gcrypt, and some underlying libraries may use it + * behind our back. Only way is to always link gcrypt statically (ouch!) or + * have upstream gcrypt provide one shared object per threading system. */ + static vlc_mutex_t lock = VLC_STATIC_MUTEX; + static bool done = false; + + vlc_mutex_lock (&lock); + if (!done) + { + gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_vlc); + done = true; + } + vlc_mutex_unlock (&lock); }