aboutsummaryrefslogtreecommitdiff
path: root/builtin-write-tree.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2006-06-20 00:55:20 +0200
committerJunio C Hamano <junkio@cox.net>2006-06-19 17:04:27 -0700
commit928e47e3d50527adcfef20932f3b2764b9f11f06 (patch)
tree063d6722a7e7da75aed6c98b8d73d876d2579c76 /builtin-write-tree.c
parent854b4629f97fb216a91805706cd61b33beb49172 (diff)
downloadgit-928e47e3d50527adcfef20932f3b2764b9f11f06.tar.gz
git-928e47e3d50527adcfef20932f3b2764b9f11f06.tar.xz
Initialize lock_file struct to all zero.
hold_lock_file_for_update() relies on that. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-write-tree.c')
-rw-r--r--builtin-write-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-write-tree.c b/builtin-write-tree.c
index c3aac3602..70e9b6fcc 100644
--- a/builtin-write-tree.c
+++ b/builtin-write-tree.c
@@ -16,7 +16,7 @@ int write_tree(unsigned char *sha1, int missing_ok, const char *prefix)
int entries, was_valid, newfd;
/* We can't free this memory, it becomes part of a linked list parsed atexit() */
- struct lock_file *lock_file = xmalloc(sizeof(struct lock_file));
+ struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
newfd = hold_lock_file_for_update(lock_file, get_index_file());