aboutsummaryrefslogtreecommitdiff
path: root/walker.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2008-06-04 14:38:58 -0400
committerJunio C Hamano <gitster@pobox.com>2008-06-04 13:33:25 -0700
commit541fc218e6541ae94b3b1bc9e613f7bc879f6841 (patch)
tree28bfa59c103b904bf5e2258abb23e6e90ac6c2c8 /walker.c
parent60727b5800d7791e5b107620cb5b2d344cf97fe9 (diff)
downloadgit-541fc218e6541ae94b3b1bc9e613f7bc879f6841.tar.gz
git-541fc218e6541ae94b3b1bc9e613f7bc879f6841.tar.xz
Fix "git clone http://$URL" to check out the worktree when asked
The builtin-clone now does the http commit walking and the tree unpacking in the same process, and the commit walker leaves the in-core objects in a funny state. When forgetting the data read from the tree object, the object should be marked "not parsed yet" for later users. Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'walker.c')
-rw-r--r--walker.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/walker.c b/walker.c
index 31de6c16b..0e68ee6d2 100644
--- a/walker.c
+++ b/walker.c
@@ -59,6 +59,7 @@ static int process_tree(struct walker *walker, struct tree *tree)
free(tree->buffer);
tree->buffer = NULL;
tree->size = 0;
+ tree->object.parsed = 0;
return 0;
}