#include "dir.h"
#include "builtin.h"
+#define MAX_TREES 4
static int nr_trees;
-static struct tree *trees[4];
+static struct tree *trees[MAX_TREES];
static int list_tree(unsigned char *sha1)
{
{
int i, newfd, stage = 0;
unsigned char sha1[20];
- struct tree_desc t[3];
+ struct tree_desc t[MAX_TREES];
struct unpack_trees_options opts;
memset(&opts, 0, sizeof(opts));
opts.head_idx = 1;
}
+ if (MAX_TREES < nr_trees)
+ die("I cannot read more than %d trees", MAX_TREES);
+
for (i = 0; i < nr_trees; i++) {
struct tree *tree = trees[i];
parse_tree(tree);