]> git.ipfire.org Git - thirdparty/git.git/commit - commit.h
log-tree: use FLEX_ARRAY in name_decoration
authorJeff King <peff@peff.net>
Tue, 26 Aug 2014 10:24:20 +0000 (06:24 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 Aug 2014 14:44:27 +0000 (07:44 -0700)
commit2e3dfb216991974b60fdb1933eb3331e03383e61
treea5b7fc4e71e77832dcbb8c5d5a55de9222ac7972
parent2608c24940c80bf379937e4cefee75e2db79e008
log-tree: use FLEX_ARRAY in name_decoration

We are already using the flex-array technique; let's
annotate it with our usual FLEX_ARRAY macro. Besides being
more readable, this is slightly more efficient on compilers
that understand flex-arrays.

Note that we need to bump the allocation in add_name_decoration,
which did not explicitly add one byte for the NUL terminator
of the string we are putting into the flex-array (it did not
need to before, because the struct itself was over-allocated
by one byte).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit.h
log-tree.c