Skip to content

Commit 90d3405

Browse files
pcloudsgitster
authored andcommitted
match-trees.c: remove the_repo from shift_tree*()
Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0dd1f0c commit 90d3405

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

cache.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1786,8 +1786,8 @@ int add_files_to_cache(const char *prefix, const struct pathspec *pathspec, int
17861786
extern int diff_auto_refresh_index;
17871787

17881788
/* match-trees.c */
1789-
void shift_tree(const struct object_id *, const struct object_id *, struct object_id *, int);
1790-
void shift_tree_by(const struct object_id *, const struct object_id *, struct object_id *, const char *);
1789+
void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
1790+
void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);
17911791

17921792
/*
17931793
* whitespace rules.

match-trees.c

+7-5
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ static int splice_tree(const struct object_id *oid1, const char *prefix,
248248
* other hand, it could cover tree one and we might need to pick a
249249
* subtree of it.
250250
*/
251-
void shift_tree(const struct object_id *hash1,
251+
void shift_tree(struct repository *r,
252+
const struct object_id *hash1,
252253
const struct object_id *hash2,
253254
struct object_id *shifted,
254255
int depth_limit)
@@ -290,7 +291,7 @@ void shift_tree(const struct object_id *hash1,
290291
if (!*del_prefix)
291292
return;
292293

293-
if (get_tree_entry(the_repository, hash2, del_prefix, shifted, &mode))
294+
if (get_tree_entry(r, hash2, del_prefix, shifted, &mode))
294295
die("cannot find path %s in tree %s",
295296
del_prefix, oid_to_hex(hash2));
296297
return;
@@ -307,7 +308,8 @@ void shift_tree(const struct object_id *hash1,
307308
* Unfortunately we cannot fundamentally tell which one to
308309
* be prefixed, as recursive merge can work in either direction.
309310
*/
310-
void shift_tree_by(const struct object_id *hash1,
311+
void shift_tree_by(struct repository *r,
312+
const struct object_id *hash1,
311313
const struct object_id *hash2,
312314
struct object_id *shifted,
313315
const char *shift_prefix)
@@ -317,12 +319,12 @@ void shift_tree_by(const struct object_id *hash1,
317319
unsigned candidate = 0;
318320

319321
/* Can hash2 be a tree at shift_prefix in tree hash1? */
320-
if (!get_tree_entry(the_repository, hash1, shift_prefix, &sub1, &mode1) &&
322+
if (!get_tree_entry(r, hash1, shift_prefix, &sub1, &mode1) &&
321323
S_ISDIR(mode1))
322324
candidate |= 1;
323325

324326
/* Can hash1 be a tree at shift_prefix in tree hash2? */
325-
if (!get_tree_entry(the_repository, hash2, shift_prefix, &sub2, &mode2) &&
327+
if (!get_tree_entry(r, hash2, shift_prefix, &sub2, &mode2) &&
326328
S_ISDIR(mode2))
327329
candidate |= 2;
328330

merge-recursive.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ static struct tree *shift_tree_object(struct repository *repo,
153153
struct object_id shifted;
154154

155155
if (!*subtree_shift) {
156-
shift_tree(&one->object.oid, &two->object.oid, &shifted, 0);
156+
shift_tree(repo, &one->object.oid, &two->object.oid, &shifted, 0);
157157
} else {
158-
shift_tree_by(&one->object.oid, &two->object.oid, &shifted,
158+
shift_tree_by(repo, &one->object.oid, &two->object.oid, &shifted,
159159
subtree_shift);
160160
}
161161
if (oideq(&two->object.oid, &shifted))

t/helper/test-match-trees.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ int cmd__match_trees(int ac, const char **av)
2020
if (!two)
2121
die("not a tree-ish %s", av[2]);
2222

23-
shift_tree(&one->object.oid, &two->object.oid, &shifted, -1);
23+
shift_tree(the_repository, &one->object.oid, &two->object.oid, &shifted, -1);
2424
printf("shifted: %s\n", oid_to_hex(&shifted));
2525

2626
exit(0);

0 commit comments

Comments
 (0)