X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_gcrypt.h;h=eec15c220f733affb590254ce038399c29aa5b6b;hb=2b7581cdb833d7b9618ba0bd7e0fdcf298e8529f;hp=db054f42c3d81176f8634cdbcba5f073b61db452;hpb=ba8f1f35e809572fb556818662bdf531a8a1c79a;p=vlc diff --git a/include/vlc_gcrypt.h b/include/vlc_gcrypt.h index db054f42c3..eec15c220f 100644 --- a/include/vlc_gcrypt.h +++ b/include/vlc_gcrypt.h @@ -23,6 +23,8 @@ * This file implements gcrypt support functions in vlc */ +#include + #ifdef LIBVLC_USE_PTHREAD /** * If possible, use gcrypt-provided thread implementation. This is so that @@ -38,13 +40,12 @@ 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; vlc_mutex_init( p_lock ); + *p_sys = p_lock; return VLC_SUCCESS; }