openldap/servers/slapd/ch_malloc.c

63 lines
968 B
C
Raw Normal View History

1998-08-08 20:43:13 -04:00
/* ch_malloc.c - malloc routines that test returns from malloc and friends */
1998-10-24 21:41:42 -04:00
#include "portable.h"
1998-08-08 20:43:13 -04:00
#include <stdio.h>
1998-10-24 21:41:42 -04:00
#include <ac/string.h>
#include <ac/socket.h>
1998-08-08 20:43:13 -04:00
#include "slap.h"
void *
1998-08-08 20:43:13 -04:00
ch_malloc(
unsigned long size
)
{
void *new;
1998-08-08 20:43:13 -04:00
if ( (new = (void *) malloc( size )) == NULL ) {
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_ANY, "malloc of %d bytes failed\n", size, 0, 0 );
exit( 1 );
}
return( new );
}
void *
1998-08-08 20:43:13 -04:00
ch_realloc(
void *block,
1998-08-08 20:43:13 -04:00
unsigned long size
)
{
void *new;
1998-08-08 20:43:13 -04:00
if ( block == NULL ) {
return( ch_malloc( size ) );
}
if ( (new = (void *) realloc( block, size )) == NULL ) {
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_ANY, "realloc of %d bytes failed\n", size, 0, 0 );
exit( 1 );
}
return( new );
}
void *
1998-08-08 20:43:13 -04:00
ch_calloc(
unsigned long nelem,
unsigned long size
)
{
void *new;
1998-08-08 20:43:13 -04:00
if ( (new = (void *) calloc( nelem, size )) == NULL ) {
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_ANY, "calloc of %d elems of %d bytes failed\n",
nelem, size, 0 );
exit( 1 );
}
return( new );
}