]> git.sur5r.net Git - openldap/commitdiff
need to use ch_malloc/realloc
authorKurt Zeilenga <kurt@openldap.org>
Sun, 9 Mar 2003 20:15:30 +0000 (20:15 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sun, 9 Mar 2003 20:15:30 +0000 (20:15 +0000)
servers/slapd/back-bdb/tools.c
servers/slapd/daemon.c

index cd7a4460412582d98e7806d4b3979ffa99bb40e9..446b9712bacc0cf48c594c08d65ffed5e46c6b0a 100644 (file)
@@ -182,10 +182,10 @@ int bdb_tool_next_id(
                } else if ( hole ) {
                        if ( nholes == nhmax - 1 ) {
                                if ( holes == hbuf ) {
-                                       holes = malloc( nhmax * sizeof(ID) * 2 );
+                                       holes = ch_malloc( nhmax * sizeof(ID) * 2 );
                                        AC_MEMCPY( holes, hbuf, sizeof(hbuf) );
                                } else {
-                                       holes = realloc( holes, nhmax * sizeof(ID) * 2 );
+                                       holes = ch_realloc( holes, nhmax * sizeof(ID) * 2 );
                                }
                                nhmax *= 2;
                        }
index 5869fe418c98243d965836541c49deb0fa5f705f..38f804466b502bc0621d29a7300463aa69fa9719 100644 (file)
@@ -107,7 +107,7 @@ void slapd_slp_init( const char* urls ) {
                if( strcmp( slapd_srvurls[i], "ldap:///" ) == 0) {
                        char *host = ldap_pvt_get_fqdn( NULL );
                        if ( host != NULL ) {
-                               slapd_srvurls[i] = (char *) realloc( slapd_srvurls[i],
+                               slapd_srvurls[i] = (char *) ch_realloc( slapd_srvurls[i],
                                        strlen( host ) +
                                        sizeof( LDAP_SRVTYPE_PREFIX ) );
                                strcpy( lutil_strcopy(slapd_srvurls[i],
@@ -119,7 +119,7 @@ void slapd_slp_init( const char* urls ) {
                } else if ( strcmp( slapd_srvurls[i], "ldaps:///" ) == 0) {
                        char *host = ldap_pvt_get_fqdn( NULL );
                        if ( host != NULL ) {
-                               slapd_srvurls[i] = (char *) realloc( slapd_srvurls[i],
+                               slapd_srvurls[i] = (char *) ch_realloc( slapd_srvurls[i],
                                        strlen( host ) +
                                        sizeof( LDAPS_SRVTYPE_PREFIX ) );
                                strcpy( lutil_strcopy(slapd_srvurls[i],