]> git.ipfire.org Git - thirdparty/git.git/blobdiff - revision.c
t4039: abstract away SHA-1-specific constants
[thirdparty/git.git] / revision.c
index 51690e480d5b626224e919f04dbfb8d1c3426f3e..a2406c451925f42dad2f7b5851c7ce7c48b64eff 100644 (file)
@@ -404,9 +404,7 @@ static struct commit *handle_commit(struct rev_info *revs,
                struct tag *tag = (struct tag *) object;
                if (revs->tag_objects && !(flags & UNINTERESTING))
                        add_pending_object(revs, object, tag->tag);
-               if (!tag->tagged)
-                       die("bad tag");
-               object = parse_object(revs->repo, &tag->tagged->oid);
+               object = parse_object(revs->repo, get_tagged_oid(tag));
                if (!object) {
                        if (revs->ignore_missing_links || (flags & UNINTERESTING))
                                return NULL;