Skip to content

Commit b0a4264

Browse files
jmahgitster
authored andcommitted
sha1_file: fix iterating loose alternate objects
The string in 'base' contains a path suffix to a specific object; when its value is used, the suffix must either be filled (as in stat_sha1_file, open_sha1_file, check_and_freshen_nonlocal) or cleared (as in prepare_packed_git) to avoid junk at the end. 660c889 (sha1_file: add for_each iterators for loose and packed objects, 2014-10-15) introduced loose_from_alt_odb(), but this did neither and treated 'base' as a complete path to the "base" object directory, instead of a pointer to the "base" of the full path string. The trailing path after 'base' is still initialized to NUL, hiding the bug in some common cases. Additionally the descendent for_each_file_in_obj_subdir() function swallows ENOENT, so an error only shows if the alternate's path was last filled with a valid object (where statting /path/to/existing/00/0bjectfile/00 fails). Signed-off-by: Jonathon Mah <[email protected]> Helped-by: Kyle J. McKay <[email protected]> Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e6f875e commit b0a4264

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

sha1_file.c

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3406,9 +3406,16 @@ static int loose_from_alt_odb(struct alternate_object_database *alt,
34063406
void *vdata)
34073407
{
34083408
struct loose_alt_odb_data *data = vdata;
3409-
return for_each_loose_file_in_objdir(alt->base,
3410-
data->cb, NULL, NULL,
3411-
data->data);
3409+
struct strbuf buf = STRBUF_INIT;
3410+
int r;
3411+
3412+
/* copy base not including trailing '/' */
3413+
strbuf_add(&buf, alt->base, alt->name - alt->base - 1);
3414+
r = for_each_loose_file_in_objdir_buf(&buf,
3415+
data->cb, NULL, NULL,
3416+
data->data);
3417+
strbuf_release(&buf);
3418+
return r;
34123419
}
34133420

34143421
int for_each_loose_object(each_loose_object_fn cb, void *data)

t/t5304-prune.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,4 +253,12 @@ test_expect_success 'prune .git/shallow' '
253253
test_path_is_missing .git/shallow
254254
'
255255

256+
test_expect_success 'prune: handle alternate object database' '
257+
test_create_repo A &&
258+
git -C A commit --allow-empty -m "initial commit" &&
259+
git clone --shared A B &&
260+
git -C B commit --allow-empty -m "next commit" &&
261+
git -C B prune
262+
'
263+
256264
test_done

0 commit comments

Comments
 (0)