Merge branch 'jt/fsck-code-cleanup' into maint

Plug recently introduced leaks in fsck.

* jt/fsck-code-cleanup:
  fsck: fix leak when traversing trees
maint
Junio C Hamano 2018-03-22 14:24:12 -07:00
commit d78b7eb2d5
1 changed files with 7 additions and 1 deletions

View File

@ -171,7 +171,13 @@ static void mark_object_reachable(struct object *obj)

static int traverse_one_object(struct object *obj)
{
return fsck_walk(obj, obj, &fsck_walk_options);
int result = fsck_walk(obj, obj, &fsck_walk_options);

if (obj->type == OBJ_TREE) {
struct tree *tree = (struct tree *)obj;
free_tree_buffer(tree);
}
return result;
}

static int traverse_reachable(void)