1999-05-29 09:19:14 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
1999-05-30 02:57:23 +08:00
|
|
|
#include <ac/string.h>
|
1999-05-29 09:19:14 +08:00
|
|
|
|
|
|
|
#include "lber-int.h"
|
|
|
|
|
1999-05-31 07:00:52 +08:00
|
|
|
BerMemoryFunctions *ber_int_memory_fns = NULL;
|
|
|
|
|
1999-05-29 09:19:14 +08:00
|
|
|
void
|
|
|
|
ber_memfree( void *p )
|
|
|
|
{
|
1999-05-29 13:16:31 +08:00
|
|
|
ber_int_options.lbo_valid = LBER_INITIALIZED;
|
1999-05-31 07:00:52 +08:00
|
|
|
|
|
|
|
assert( p != NULL );
|
|
|
|
|
|
|
|
if( ber_int_memory_fns == NULL ) {
|
|
|
|
free( p );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( ber_int_memory_fns->bmf_free );
|
|
|
|
|
|
|
|
(*ber_int_memory_fns->bmf_free)( p );
|
1999-05-29 09:19:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
ber_memalloc( size_t s )
|
|
|
|
{
|
1999-05-29 13:16:31 +08:00
|
|
|
ber_int_options.lbo_valid = LBER_INITIALIZED;
|
1999-05-31 07:00:52 +08:00
|
|
|
|
|
|
|
assert( s );
|
|
|
|
|
|
|
|
if( ber_int_memory_fns == NULL ) {
|
|
|
|
return malloc( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( ber_int_memory_fns->bmf_malloc );
|
|
|
|
|
|
|
|
return (*ber_int_memory_fns->bmf_malloc)( s );
|
1999-05-29 09:19:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
ber_memcalloc( size_t n, size_t s )
|
|
|
|
{
|
1999-05-29 13:16:31 +08:00
|
|
|
ber_int_options.lbo_valid = LBER_INITIALIZED;
|
1999-05-31 07:00:52 +08:00
|
|
|
|
|
|
|
assert( n && s );
|
|
|
|
|
|
|
|
if( ber_int_memory_fns == NULL ) {
|
|
|
|
return calloc( n, s );
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( ber_int_memory_fns->bmf_calloc );
|
|
|
|
|
|
|
|
return (*ber_int_memory_fns->bmf_calloc)( n, s );
|
1999-05-29 09:19:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
ber_memrealloc( void* p, size_t s )
|
|
|
|
{
|
1999-05-29 13:16:31 +08:00
|
|
|
ber_int_options.lbo_valid = LBER_INITIALIZED;
|
|
|
|
|
1999-05-31 07:00:52 +08:00
|
|
|
if( p == NULL ) {
|
|
|
|
return ber_memalloc( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( s == 0 ) {
|
|
|
|
ber_memfree( p );
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-05-29 13:16:31 +08:00
|
|
|
|
1999-05-31 07:00:52 +08:00
|
|
|
if( ber_int_memory_fns == NULL ) {
|
|
|
|
return realloc( p, s );
|
1999-05-29 13:16:31 +08:00
|
|
|
}
|
1999-05-31 07:00:52 +08:00
|
|
|
|
|
|
|
assert( ber_int_memory_fns->bmf_realloc );
|
|
|
|
|
|
|
|
return (*ber_int_memory_fns->bmf_realloc)( p, s );
|
1999-05-29 13:16:31 +08:00
|
|
|
}
|
|
|
|
|