mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
59 lines
944 B
C
59 lines
944 B
C
|
/* 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 );
|
||
|
}
|