From 1bb88be99e4fdedcd5cc5292c11b566a00028deb Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Sat, 14 Apr 2007 17:26:20 -0400 Subject: [PATCH] git-blame: Fix overrun in fake_working_tree_commit() git-blame would overflow commit->buffer when annotating files with long paths. Signed-off-by: Michael Spang Signed-off-by: Junio C Hamano --- builtin-blame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin-blame.c b/builtin-blame.c index 60ec5354f..bc86bda6c 100644 --- a/builtin-blame.c +++ b/builtin-blame.c @@ -2041,7 +2041,7 @@ static struct commit *fake_working_tree_commit(const char *path, const char *con commit->buffer = xmalloc(400); ident = fmt_ident("Not Committed Yet", "not.committed.yet", NULL, 0); - sprintf(commit->buffer, + snprintf(commit->buffer, 400, "tree 0000000000000000000000000000000000000000\n" "parent %s\n" "author %s\n" -- 2.45.2