ITS#2382 use ch_calloc

This commit is contained in:
Howard Chu 2003-03-16 12:34:40 +00:00
parent e1980876f4
commit d18e0989d9

View file

@ -88,7 +88,7 @@ int connections_init(void)
/* should check return of every call */
ldap_pvt_thread_mutex_init( &connections_mutex );
connections = (Connection *) calloc( dtblsize, sizeof(Connection) );
connections = (Connection *) ch_calloc( dtblsize, sizeof(Connection) );
if( connections == NULL ) {
#ifdef NEW_LOGGING