summaryrefslogtreecommitdiff
path: root/receive-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-01-07 21:32:48 -0800
committerLibravatar Junio C Hamano <junkio@cox.net>2006-01-07 21:32:48 -0800
commit8fc11b5aa98540f7caab87e22e5aae63512893a2 (patch)
tree42cc20556d8b4766d9a0adbcc2e32de22b9fc6c9 /receive-pack.c
parentGIT 1.0.7 (diff)
parentmailsplit: allow empty input from stdin (diff)
downloadtgif-8fc11b5aa98540f7caab87e22e5aae63512893a2.tar.xz
GIT 1.0.8
Diffstat (limited to 'receive-pack.c')
-rw-r--r--receive-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/receive-pack.c b/receive-pack.c
index 92878ecac3..ce986fe11c 100644
--- a/receive-pack.c
+++ b/receive-pack.c
@@ -24,7 +24,7 @@ struct command {
unsigned char updated;
unsigned char old_sha1[20];
unsigned char new_sha1[20];
- char ref_name[0];
+ char ref_name[FLEX_ARRAY]; /* more */
};
static struct command *commands = NULL;