Index: trunk/src/free_atexit.c =================================================================== --- trunk/src/free_atexit.c (revision 2407) +++ trunk/src/free_atexit.c (revision 2408) @@ -65,9 +65,10 @@ return new_memory; } -void *leaky_realloc(void *old_memory, size_t size) +void *leaky_realloc(void *old_memory_, size_t size) { - void *new_memory; + char *new_memory; + char *old_memory = old_memory_; leaky_idx_t i; if (old_memory == NULL)