1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
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.
|
|
|
|
*/
|
|
|
|
|
1999-08-20 04:01:42 +08:00
|
|
|
#define CH_FREE 1
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
|
|
|
* 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>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-06-03 08:37:44 +08:00
|
|
|
#include <ac/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"
|
|
|
|
|
|
|
|
|
1999-08-20 04:01:42 +08:00
|
|
|
#ifndef CSRIMALLOC
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Just like malloc, except we check the returned value and exit
|
|
|
|
* if anything goes wrong.
|
|
|
|
*/
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_malloc(
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t size
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-06-19 13:08:13 +08:00
|
|
|
if ( (new = (void *) ber_memalloc( size )) == NULL ) {
|
1999-06-19 07:53:05 +08:00
|
|
|
fprintf( stderr, "malloc of %lu bytes failed\n",
|
|
|
|
(long) size );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Just like realloc, except we check the returned value and exit
|
|
|
|
* if anything goes wrong.
|
|
|
|
*/
|
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,
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t size
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
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 ) );
|
|
|
|
}
|
|
|
|
|
1999-06-19 13:08:13 +08:00
|
|
|
if ( size == 0 ) {
|
|
|
|
ch_free( block );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( (new = (void *) ber_memrealloc( block, size )) == NULL ) {
|
1999-06-19 07:53:05 +08:00
|
|
|
fprintf( stderr, "realloc of %lu bytes failed\n",
|
|
|
|
(long) size );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Just like calloc, except we check the returned value and exit
|
|
|
|
* if anything goes wrong.
|
|
|
|
*/
|
1998-11-12 07:37:38 +08:00
|
|
|
void *
|
1998-08-09 08:43:13 +08:00
|
|
|
ch_calloc(
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_len_t nelem,
|
|
|
|
ber_len_t size
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
1998-11-12 07:37:38 +08:00
|
|
|
void *new;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-06-19 13:08:13 +08:00
|
|
|
if ( (new = (void *) ber_memcalloc( nelem, size )) == NULL ) {
|
1998-11-05 15:31:40 +08:00
|
|
|
fprintf( stderr, "calloc of %lu elems of %lu bytes failed\n",
|
1999-06-19 07:53:05 +08:00
|
|
|
(long) nelem, (long) size );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( new );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Just like free, except we check to see if p is null.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ch_free(
|
1998-11-12 07:37:38 +08:00
|
|
|
void *p
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if ( p != NULL ) {
|
1999-06-19 13:08:13 +08:00
|
|
|
ber_memfree( p );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
1999-06-19 13:08:13 +08:00
|
|
|
|
1999-08-20 04:01:42 +08:00
|
|
|
#endif
|