builtin-apply.c: get rid of an unnecessary use of temporary array
commit0b1fac320c10b83133f824805055ff428b331e19
authorJunio C Hamano <gitster@pobox.com>
Tue, 1 Sep 2009 09:18:29 +0000 (1 02:18 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 1 Sep 2009 15:02:51 +0000 (1 08:02 -0700)
tree18eccf02ed3780acf6253b88040f5f3ad45e6109
parentdcda3614d44bf83aaeb7632353ab668bc689986c
builtin-apply.c: get rid of an unnecessary use of temporary array

Instead of allocating a temporary array imglen[], copying contents to it
from another array img->line[], and then using imglen[], use the value
from img->line[], whose value does not change during the whole process.

This incidentally removes a use of C99 variable length array, which some
older compilers apparently are not happy with.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-apply.c