From: Pierangelo Masarati Date: Sat, 23 Mar 2002 17:24:38 +0000 (+0000) Subject: ldap_int_thread_pool_wrapper was called with wrong prototype (ITS#1673) X-Git-Tag: OPENLDAP_REL_ENG_2_MP~326 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e8c5f59d84668b64015ba2305e92c25aaa87bbdc;p=openldap ldap_int_thread_pool_wrapper was called with wrong prototype (ITS#1673) ================ Written by Hallvard B. Furuseth and placed into the public domain. This software is not subject to any license of the University of Oslo. ================ ldap_int_thread_pool_wrapper() was defined with an parameter struct ldap_int_thread_pool_s* but called with a void* argument. Since these may have different representations, it can crash. Hallvard B. Furuseth , March 2002. --- diff --git a/libraries/libldap_r/tpool.c b/libraries/libldap_r/tpool.c index 1eb7cd0210..923a1b9ce4 100644 --- a/libraries/libldap_r/tpool.c +++ b/libraries/libldap_r/tpool.c @@ -60,8 +60,7 @@ static LDAP_STAILQ_HEAD(tpq, ldap_int_thread_pool_s) static ldap_pvt_thread_mutex_t ldap_pvt_thread_pool_mutex; -static void *ldap_int_thread_pool_wrapper( - struct ldap_int_thread_pool_s *pool ); +static void *ldap_int_thread_pool_wrapper( void *pool ); int ldap_int_thread_pool_startup ( void ) @@ -130,8 +129,7 @@ ldap_pvt_thread_pool_init ( pool->ltp_open_count++; ldap_pvt_thread_t thr; - rc = ldap_pvt_thread_create( &thr, 1, - (void *) ldap_int_thread_pool_wrapper, pool ); + rc = ldap_pvt_thread_create( &thr, 1, ldap_int_thread_pool_wrapper, pool ); if( rc != 0) { /* couldn't start one? then don't start any */ @@ -208,7 +206,7 @@ ldap_pvt_thread_pool_submit ( if (need_thread) { int rc = ldap_pvt_thread_create( &thr, 1, - (void *)ldap_int_thread_pool_wrapper, pool ); + ldap_int_thread_pool_wrapper, pool ); ldap_pvt_thread_mutex_lock(&pool->ltp_mutex); if (rc == 0) { pool->ltp_starting--; @@ -353,8 +351,9 @@ ldap_pvt_thread_pool_destroy ( ldap_pvt_thread_pool_t *tpool, int run_pending ) static void * ldap_int_thread_pool_wrapper ( - struct ldap_int_thread_pool_s *pool ) + void *xpool ) { + struct ldap_int_thread_pool_s *pool = xpool; ldap_int_thread_ctx_t *ctx; if (pool == NULL)