Felipe Contreras <[email protected]> writes:

> +static void add_rewritten(unsigned char *from, unsigned char *to)
> +{
> +     struct rewritten_list_item *item;
> +     if (rewritten.nr + 1 >= rewritten.alloc) {
> +             rewritten.alloc += 32;
> +             rewritten.items = xrealloc(rewritten.items, rewritten.alloc * 
> sizeof(*rewritten.items));
> +     }

Is there a compelling reason not to use ALLOC_GROW() here?

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to