diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-06-20 00:55:20 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-19 17:04:27 -0700 |
commit | 928e47e3d50527adcfef20932f3b2764b9f11f06 (patch) | |
tree | 063d6722a7e7da75aed6c98b8d73d876d2579c76 /builtin-update-index.c | |
parent | 854b4629f97fb216a91805706cd61b33beb49172 (diff) | |
download | git-928e47e3d50527adcfef20932f3b2764b9f11f06.tar.gz |
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-update-index.c')
-rw-r--r-- | builtin-update-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-update-index.c b/builtin-update-index.c index 325cd0944d..ef50243452 100644 --- a/builtin-update-index.c +++ b/builtin-update-index.c @@ -490,7 +490,7 @@ int cmd_update_index(int argc, const char **argv, char **envp) git_config(git_default_config); /* We can't free this memory, it becomes part of a linked list parsed atexit() */ - lock_file = xmalloc(sizeof(struct lock_file)); + lock_file = xcalloc(1, sizeof(struct lock_file)); newfd = hold_lock_file_for_update(lock_file, get_index_file()); if (newfd < 0) |