Fix LBER_MEMORY_DEBUG failed realloc bug

This commit is contained in:
Kurt Zeilenga 2000-06-10 00:17:55 +00:00
parent 55dba4395f
commit 7b836babb6

View File

@ -198,7 +198,7 @@ ber_memcalloc( ber_len_t n, ber_len_t s )
void *
ber_memrealloc( void* p, ber_len_t s )
{
void *new;
void *new = NULL;
ber_int_options.lbo_valid = LBER_INITIALIZED;
/* realloc(NULL,s) -> malloc(s) */