1998-08-09 08:43:13 +08:00
|
|
|
/* ch_malloc.c - malloc routines that test returns from malloc and friends */
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-11-28 04:21:54 +08:00
|
|
|
#include <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"
|
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_malloc(
|
|
|
|
unsigned long size
|
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
if ( (new = (void *) malloc( size )) == NULL ) {
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "malloc of %lu bytes failed\n", size, 0, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_realloc(
|
1998-11-12 07:37:38 +08:00
|
|
|
void *block,
|
1998-08-09 08:43:13 +08:00
|
|
|
unsigned long size
|
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if ( block == NULL ) {
|
|
|
|
return( ch_malloc( size ) );
|
|
|
|
}
|
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
if ( (new = (void *) realloc( block, size )) == NULL ) {
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "realloc of %lu bytes failed\n", size, 0, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_calloc(
|
|
|
|
unsigned long nelem,
|
|
|
|
unsigned long size
|
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-11-12 07:37:38 +08:00
|
|
|
if ( (new = (void *) calloc( nelem, size )) == NULL ) {
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "calloc of %lu elems of %lu bytes failed\n",
|
1998-08-09 08:43:13 +08:00
|
|
|
nelem, size, 0 );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
1998-11-28 04:21:54 +08:00
|
|
|
|
|
|
|
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 );
|
|
|
|
}
|
|
|
|
|