Skip to content
Snippets Groups Projects
Commit 7b836bab authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix LBER_MEMORY_DEBUG failed realloc bug

parent 55dba439
No related branches found
No related tags found
No related merge requests found
......@@ -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) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment