OSDN Git Service

unpack-trees.c: work around run-time array initialization flaw on IRIX 6.5
authorBrandon Casey <casey@nrlssc.navy.mil>
Fri, 10 Jul 2009 17:10:43 +0000 (12:10 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sat, 11 Jul 2009 06:50:29 +0000 (23:50 -0700)
The c99 MIPSpro Compiler version 7.4.4m on IRIX 6.5 does not properly
initialize run-time initialized arrays.  An array which is initialized with
fewer elements than the length of the array should have the unitialized
elements initialized to zero.  This compiler only initializes the remaining
elements when the last element is a static parameter.  So work around it
by adding a "NULL" initialization parameter.

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
unpack-trees.c

index 42c7d7d..f9d12aa 100644 (file)
@@ -128,7 +128,7 @@ static inline int call_unpack_fn(struct cache_entry **src, struct unpack_trees_o
 
 static int unpack_index_entry(struct cache_entry *ce, struct unpack_trees_options *o)
 {
-       struct cache_entry *src[5] = { ce, };
+       struct cache_entry *src[5] = { ce, NULL, };
 
        o->pos++;
        if (ce_stage(ce)) {