From: Shawn O. Pearce Date: Wed, 23 Aug 2006 05:33:47 +0000 (-0400) Subject: Fixed segfault in fast-import after growing a tree. X-Git-Tag: v1.5.0-rc4~14^2~71 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=afde8dd96dbb81688d7cb22330e4fffcfc7def21;p=git.git Fixed segfault in fast-import after growing a tree. Growing a tree caused all subtrees to be deallocated and put back into the free list yet those subtree's contents were still actively in use. Consequently they were doled out again and got stomped on elsewhere. Releasing a tree is now performed in two parts, either releasing only the content array or releasing the content array and recursively releasing the subtree(s). Signed-off-by: Shawn O. Pearce --- diff --git a/fast-import.c b/fast-import.c index 7d1ee1dad..4c2431f0b 100644 --- a/fast-import.c +++ b/fast-import.c @@ -420,11 +420,16 @@ static void release_tree_content(struct tree_content *t) { struct avail_tree_content *f = (struct avail_tree_content*)t; unsigned int hc = hc_entries(f->entry_capacity); + f->next_avail = avail_tree_table[hc]; + avail_tree_table[hc] = f; +} + +static void release_tree_content_recursive(struct tree_content *t) +{ unsigned int i; for (i = 0; i < t->entry_count; i++) release_tree_entry(t->entries[i]); - f->next_avail = avail_tree_table[hc]; - avail_tree_table[hc] = f; + release_tree_content(t); } static struct tree_content* grow_tree_content( @@ -459,7 +464,7 @@ static struct tree_entry* new_tree_entry() static void release_tree_entry(struct tree_entry *e) { if (e->tree) - release_tree_content(e->tree); + release_tree_content_recursive(e->tree); *((void**)e) = avail_tree_entry; avail_tree_entry = e; } @@ -720,7 +725,7 @@ static int tree_content_set( e->mode = mode; memcpy(e->sha1, sha1, 20); if (e->tree) { - release_tree_content(e->tree); + release_tree_content_recursive(e->tree); e->tree = NULL; } memcpy(root->sha1, null_sha1, 20); @@ -986,7 +991,7 @@ static void unload_one_branch() } e->active_next_branch = NULL; if (e->branch_tree.tree) { - release_tree_content(e->branch_tree.tree); + release_tree_content_recursive(e->branch_tree.tree); e->branch_tree.tree = NULL; } cur_active_branches--;