On Wed, Apr 5, 2017 at 12:55 PM, <git@xxxxxxxxxxxxxxxxx> wrote: > + if (list->nr + 1 >= list->alloc) > + ALLOC_GROW(list->items, list->nr+1, list->alloc); No need for the condition here as it is part of the macro as well. Thanks for spotting this fix! Stefan