mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
ITS#2382 use ch_calloc
This commit is contained in:
parent
e1980876f4
commit
d18e0989d9
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue