mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
e2ee741ea8
if strdup fails. This is better than not checking, but we should add orderly shutdown.
80 lines
1.2 KiB
C
80 lines
1.2 KiB
C
/* ch_malloc.c - malloc routines that test returns from malloc and friends */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
|
|
void *
|
|
ch_malloc(
|
|
unsigned long size
|
|
)
|
|
{
|
|
void *new;
|
|
|
|
if ( (new = (void *) malloc( size )) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "malloc of %lu bytes failed\n", size, 0, 0 );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|
|
void *
|
|
ch_realloc(
|
|
void *block,
|
|
unsigned long size
|
|
)
|
|
{
|
|
void *new;
|
|
|
|
if ( block == NULL ) {
|
|
return( ch_malloc( size ) );
|
|
}
|
|
|
|
if ( (new = (void *) realloc( block, size )) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "realloc of %lu bytes failed\n", size, 0, 0 );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|
|
void *
|
|
ch_calloc(
|
|
unsigned long nelem,
|
|
unsigned long size
|
|
)
|
|
{
|
|
void *new;
|
|
|
|
if ( (new = (void *) calloc( nelem, size )) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "calloc of %lu elems of %lu bytes failed\n",
|
|
nelem, size, 0 );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|
|
char *
|
|
ch_strdup(
|
|
const char *string
|
|
)
|
|
{
|
|
char *new;
|
|
|
|
if ( (new = strdup( string )) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "strdup(%s) failed\n", string, 0, 0 );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|