cache-tree: protect against "git prune".
authorJunio C Hamano <junkio@cox.net>
Mon, 24 Apr 2006 22:12:42 +0000 (15:12 -0700)
committerJunio C Hamano <junkio@cox.net>
Mon, 24 Apr 2006 22:12:42 +0000 (15:12 -0700)
We reused the cache-tree data without verifying the tree object
still exists. Recompute in cache_tree_update() an otherwise
valid cache-tree entry when the tree object disappeared.

This is not usually a problem, but theoretically without this
fix things can break when the user does something like this:

- read-index from a side branch
- write-tree the result
- remove the side branch with "git branch -D"
- remove the unreachable objects with "git prune"
- write-tree what is in the index.

Signed-off-by: Junio C Hamano <junkio@cox.net>
No differences found