openldap/servers/slapd/ch_malloc.c

59 lines
944 B
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* ch_malloc.c - malloc routines that test returns from malloc and friends */
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include "slap.h"
char *
ch_malloc(
unsigned long size
)
{
char *new;
if ( (new = (char *) malloc( size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "malloc of %d bytes failed\n", size, 0, 0 );
exit( 1 );
}
return( new );
}
char *
ch_realloc(
char *block,
unsigned long size
)
{
char *new;
if ( block == NULL ) {
return( ch_malloc( size ) );
}
if ( (new = (char *) realloc( block, size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "realloc of %d bytes failed\n", size, 0, 0 );
exit( 1 );
}
return( new );
}
char *
ch_calloc(
unsigned long nelem,
unsigned long size
)
{
char *new;
if ( (new = (char *) calloc( nelem, size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "calloc of %d elems of %d bytes failed\n",
nelem, size, 0 );
exit( 1 );
}
return( new );
}