summaryrefslogtreecommitdiff
path: root/walker.c
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2018-04-22 18:12:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-04-24 01:55:04 (GMT)
commit0b6b34295413410e4ca52df4671d2a217e56a57b (patch)
tree9e02df32fe16de0beb8f2cc7103174a6e7d5a7b0 /walker.c
parent2e85a0c8abe29f9adad2ec0a977629ba90723973 (diff)
downloadgit-0b6b34295413410e4ca52df4671d2a217e56a57b.zip
git-0b6b34295413410e4ca52df4671d2a217e56a57b.tar.gz
git-0b6b34295413410e4ca52df4671d2a217e56a57b.tar.bz2
walker: drop fields of `struct walker` which are always 1
After the previous commit, both users of `struct walker` set `get_tree`, `get_history` and `get_all` to 1. Drop those fields and simplify the walker implementation accordingly. Let's hope that any out-of-tree users will not mind this change. They should notice that the compilation fails as they try to set these fields. (If they do not set them, note that `get_http_walker()` leaves them undefined, so the behavior will have been undefined all the time.) Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'walker.c')
-rw-r--r--walker.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/walker.c b/walker.c
index dffb9c8..8eb7db7 100644
--- a/walker.c
+++ b/walker.c
@@ -72,6 +72,8 @@ static struct commit_list *complete = NULL;
static int process_commit(struct walker *walker, struct commit *commit)
{
+ struct commit_list *parents;
+
if (parse_commit(commit))
return -1;
@@ -86,19 +88,14 @@ static int process_commit(struct walker *walker, struct commit *commit)
walker_say(walker, "walk %s\n", oid_to_hex(&commit->object.oid));
- if (walker->get_tree) {
- if (process(walker, &commit->tree->object))
+ if (process(walker, &commit->tree->object))
+ return -1;
+
+ for (parents = commit->parents; parents; parents = parents->next) {
+ if (process(walker, &parents->item->object))
return -1;
- if (!walker->get_all)
- walker->get_tree = 0;
- }
- if (walker->get_history) {
- struct commit_list *parents = commit->parents;
- for (; parents; parents = parents->next) {
- if (process(walker, &parents->item->object))
- return -1;
- }
}
+
return 0;
}