mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
109 lines
1.8 KiB
C
109 lines
1.8 KiB
C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include "../slapd/slap.h"
|
|
|
|
|
|
|
|
/*
|
|
* Just like malloc, except we check the returned value and exit
|
|
* if anything goes wrong.
|
|
*/
|
|
char *
|
|
ch_malloc(
|
|
unsigned long size
|
|
)
|
|
{
|
|
char *new;
|
|
|
|
if ( (new = (char *) malloc( size )) == NULL ) {
|
|
fprintf( stderr, "malloc of %d bytes failed\n", size );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
* Just like realloc, except we check the returned value and exit
|
|
* if anything goes wrong.
|
|
*/
|
|
char *
|
|
ch_realloc(
|
|
char *block,
|
|
unsigned long size
|
|
)
|
|
{
|
|
char *new;
|
|
|
|
if ( block == NULL ) {
|
|
return( ch_malloc( size ) );
|
|
}
|
|
|
|
if ( (new = (char *) realloc( block, size )) == NULL ) {
|
|
fprintf( stderr, "realloc of %d bytes failed\n", size );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
* Just like calloc, except we check the returned value and exit
|
|
* if anything goes wrong.
|
|
*/
|
|
char *
|
|
ch_calloc(
|
|
unsigned long nelem,
|
|
unsigned long size
|
|
)
|
|
{
|
|
char *new;
|
|
|
|
if ( (new = (char *) calloc( nelem, size )) == NULL ) {
|
|
fprintf( stderr, "calloc of %d elems of %d bytes failed\n",
|
|
nelem, size );
|
|
exit( 1 );
|
|
}
|
|
|
|
return( new );
|
|
}
|
|
|
|
|
|
/*
|
|
* Just like free, except we check to see if p is null.
|
|
*/
|
|
void
|
|
ch_free(
|
|
char *p
|
|
)
|
|
{
|
|
if ( p != NULL ) {
|
|
free( p );
|
|
}
|
|
return;
|
|
}
|
|
|