author | Junio C Hamano <gitster@pobox.com> | |
Tue, 1 Sep 2009 09:18:29 +0000 (02:18 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 1 Sep 2009 15:02:51 +0000 (08:02 -0700) | ||
commit | 0b1fac320c10b83133f824805055ff428b331e19 | |
tree | 18eccf02ed3780acf6253b88040f5f3ad45e6109 | tree | snapshot |
parent | dcda3614d44bf83aaeb7632353ab668bc689986c | commit | diff |
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>
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 | diff | blob | history |