openldap/servers/slapd/ch_malloc.c

107 lines
1.6 KiB
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 */
/* $OpenLDAP$ */
1999-08-07 07:07:46 +08:00
/*
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
1998-08-09 08:43:13 +08:00
#define CH_FREE 1
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1999-06-03 08:37:44 +08:00
#include <ac/stdlib.h>
1998-10-25 09:41:42 +08:00
#include <ac/string.h>
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#ifndef CSRIMALLOC
void *
1998-08-09 08:43:13 +08:00
ch_malloc(
ber_len_t size
1998-08-09 08:43:13 +08:00
)
{
void *new;
1998-08-09 08:43:13 +08:00
if ( (new = (void *) ber_memalloc( size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "ch_malloc of %lu bytes failed\n",
(long) size, 0, 0 );
1999-08-14 09:34:25 +08:00
assert( 0 );
exit( EXIT_FAILURE );
1998-08-09 08:43:13 +08:00
}
return( new );
}
void *
1998-08-09 08:43:13 +08:00
ch_realloc(
void *block,
ber_len_t size
1998-08-09 08:43:13 +08:00
)
{
void *new;
1998-08-09 08:43:13 +08:00
if ( block == NULL ) {
return( ch_malloc( size ) );
}
if( size == 0 ) {
ch_free( block );
}
if ( (new = (void *) ber_memrealloc( block, size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "ch_realloc of %lu bytes failed\n",
(long) size, 0, 0 );
1999-08-14 09:34:25 +08:00
assert( 0 );
exit( EXIT_FAILURE );
1998-08-09 08:43:13 +08:00
}
return( new );
}
void *
1998-08-09 08:43:13 +08:00
ch_calloc(
ber_len_t nelem,
ber_len_t size
1998-08-09 08:43:13 +08:00
)
{
void *new;
1998-08-09 08:43:13 +08:00
if ( (new = (void *) ber_memcalloc( nelem, size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "ch_calloc of %lu elems of %lu bytes failed\n",
(long) nelem, (long) size, 0 );
1999-08-14 09:34:25 +08:00
assert( 0 );
exit( EXIT_FAILURE );
1998-08-09 08:43:13 +08:00
}
return( new );
}
char *
ch_strdup(
const char *string
)
{
char *new;
if ( (new = ber_strdup( string )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "ch_strdup(%s) failed\n", string, 0, 0 );
1999-08-14 09:34:25 +08:00
assert( 0 );
exit( EXIT_FAILURE );
}
return( new );
}
void
ch_free( void *ptr )
{
ber_memfree( ptr );
1999-07-13 12:11:49 +08:00
}
#endif