Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-07-06 23:06:46 +0300
committerJunio C Hamano <gitster@pobox.com>2016-07-06 23:06:46 +0300
commitf83819835763c2448abc2c18c4fe750368408264 (patch)
treedc8d84609c10ccdd1fbb643f6597f86e41412c13 /builtin
parentf7927316cf7b6252e27e54cdd2929039253c2422 (diff)
parent31da121f2d316575ec3c82dfc0c7442cdb7a7740 (diff)
Merge branch 'jc/deref-tag' into maint
Code clean-up. * jc/deref-tag: blame, line-log: do not loop around deref_tag()
Diffstat (limited to 'builtin')
-rw-r--r--builtin/blame.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/builtin/blame.c b/builtin/blame.c
index 21f42b0b62..7417edf6ef 100644
--- a/builtin/blame.c
+++ b/builtin/blame.c
@@ -2425,8 +2425,7 @@ static struct commit *find_single_final(struct rev_info *revs,
struct object *obj = revs->pending.objects[i].item;
if (obj->flags & UNINTERESTING)
continue;
- while (obj->type == OBJ_TAG)
- obj = deref_tag(obj, NULL, 0);
+ obj = deref_tag(obj, NULL, 0);
if (obj->type != OBJ_COMMIT)
die("Non commit %s?", revs->pending.objects[i].name);
if (found)
@@ -2461,8 +2460,7 @@ static char *prepare_initial(struct scoreboard *sb)
struct object *obj = revs->pending.objects[i].item;
if (!(obj->flags & UNINTERESTING))
continue;
- while (obj->type == OBJ_TAG)
- obj = deref_tag(obj, NULL, 0);
+ obj = deref_tag(obj, NULL, 0);
if (obj->type != OBJ_COMMIT)
die("Non commit %s?", revs->pending.objects[i].name);
if (sb->final)