From: Howard Chu Date: Sun, 16 Mar 2003 12:34:40 +0000 (+0000) Subject: ITS#2382 use ch_calloc X-Git-Tag: NO_SLAP_OP_BLOCKS~104 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d18e0989d9bfa20c99649e595ff5cc66872226e5;p=openldap ITS#2382 use ch_calloc --- diff --git a/servers/slapd/connection.c b/servers/slapd/connection.c index 20da8a2e5c..005496fdd9 100644 --- a/servers/slapd/connection.c +++ b/servers/slapd/connection.c @@ -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