On Thu, Dec 5, 2013 at 7:32 AM, Jakub Jelinek wrote:
>
> I'm trying to understand how the backtrace_vector_* APIs are meant to work
> and used, but at least for alloc.c don't see how it can work properly:
>
> Both backtrace_vector_grow and backtrace_vector_release use
> base = realloc (vec->
Hi!
I'm trying to understand how the backtrace_vector_* APIs are meant to work
and used, but at least for alloc.c don't see how it can work properly:
Both backtrace_vector_grow and backtrace_vector_release use
base = realloc (vec->base, alc);
or
vec->base = realloc (vec->base, vec->size);