openldap/servers/slurpd/ch_malloc.c

113 lines
1.9 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/*
* Copyright (c) 1996 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
/*
* ch_malloc.c - malloc() and friends, with check for NULL return.
*/
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
#include <stdlib.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "../slapd/slap.h"
/*
* Just like malloc, except we check the returned value and exit
* if anything goes wrong.
*/
void *
1998-08-09 08:43:13 +08:00
ch_malloc(
unsigned long size
)
{
void *new;
1998-08-09 08:43:13 +08:00
if ( (new = (void *) malloc( size )) == NULL ) {
1998-11-05 15:31:40 +08:00
fprintf( stderr, "malloc of %lu bytes failed\n", size );
1998-08-09 08:43:13 +08:00
exit( 1 );
}
return( new );
}
/*
* Just like realloc, except we check the returned value and exit
* if anything goes wrong.
*/
void *
1998-08-09 08:43:13 +08:00
ch_realloc(
void *block,
1998-08-09 08:43:13 +08:00
unsigned long size
)
{
void *new;
1998-08-09 08:43:13 +08:00
if ( block == NULL ) {
return( ch_malloc( size ) );
}
if ( (new = (void *) realloc( block, size )) == NULL ) {
1998-11-05 15:31:40 +08:00
fprintf( stderr, "realloc of %lu bytes failed\n", size );
1998-08-09 08:43:13 +08:00
exit( 1 );
}
return( new );
}
/*
* Just like calloc, except we check the returned value and exit
* if anything goes wrong.
*/
void *
1998-08-09 08:43:13 +08:00
ch_calloc(
unsigned long nelem,
unsigned long size
)
{
void *new;
1998-08-09 08:43:13 +08:00
if ( (new = (void *) calloc( nelem, size )) == NULL ) {
1998-11-05 15:31:40 +08:00
fprintf( stderr, "calloc of %lu elems of %lu bytes failed\n",
1998-08-09 08:43:13 +08:00
nelem, size );
exit( 1 );
}
return( new );
}
/*
* Just like free, except we check to see if p is null.
*/
void
ch_free(
void *p
1998-08-09 08:43:13 +08:00
)
{
if ( p != NULL ) {
free( p );
}
return;
}