Merge branch 'jk/fsck-on-diet' into maint-2.38
"git fsck" failed to release contents of tree objects already used from the memory, which has been fixed. * jk/fsck-on-diet: parse_object_buffer(): respect save_commit_buffer fsck: turn off save_commit_buffer fsck: free tree buffers after walking unreachable objects
This commit is contained in:
		@ -228,6 +228,8 @@ static void mark_unreachable_referents(const struct object_id *oid)
 | 
			
		||||
 | 
			
		||||
	options.walk = mark_used;
 | 
			
		||||
	fsck_walk(obj, NULL, &options);
 | 
			
		||||
	if (obj->type == OBJ_TREE)
 | 
			
		||||
		free_tree_buffer((struct tree *)obj);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static int mark_loose_unreachable_referents(const struct object_id *oid,
 | 
			
		||||
@ -437,9 +439,6 @@ static int fsck_obj(struct object *obj, void *buffer, unsigned long size)
 | 
			
		||||
out:
 | 
			
		||||
	if (obj->type == OBJ_TREE)
 | 
			
		||||
		free_tree_buffer((struct tree *)obj);
 | 
			
		||||
	if (obj->type == OBJ_COMMIT)
 | 
			
		||||
		free_commit_buffer(the_repository->parsed_objects,
 | 
			
		||||
				   (struct commit *)obj);
 | 
			
		||||
	return err;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -853,6 +852,7 @@ int cmd_fsck(int argc, const char **argv, const char *prefix)
 | 
			
		||||
 | 
			
		||||
	errors_found = 0;
 | 
			
		||||
	read_replace_refs = 0;
 | 
			
		||||
	save_commit_buffer = 0;
 | 
			
		||||
 | 
			
		||||
	argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										3
									
								
								object.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								object.c
									
									
									
									
									
								
							@ -233,7 +233,8 @@ struct object *parse_object_buffer(struct repository *r, const struct object_id
 | 
			
		||||
		if (commit) {
 | 
			
		||||
			if (parse_commit_buffer(r, commit, buffer, size, 1))
 | 
			
		||||
				return NULL;
 | 
			
		||||
			if (!get_cached_commit_buffer(r, commit, NULL)) {
 | 
			
		||||
			if (save_commit_buffer &&
 | 
			
		||||
			    !get_cached_commit_buffer(r, commit, NULL)) {
 | 
			
		||||
				set_commit_buffer(r, commit, buffer, size);
 | 
			
		||||
				*eaten_p = 1;
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user