Merge branch 'jk/free-tree-buffer'

* jk/free-tree-buffer:
  clear parsed flag when we free tree buffers
This commit is contained in:
Junio C Hamano
2013-09-17 11:37:33 -07:00
10 changed files with 24 additions and 23 deletions

View File

@ -139,8 +139,7 @@ void mark_tree_uninteresting(struct tree *tree)
* We don't care about the tree any more
* after it has been marked uninteresting.
*/
free(tree->buffer);
tree->buffer = NULL;
free_tree_buffer(tree);
}
void mark_parents_uninteresting(struct commit *commit)