summaryrefslogtreecommitdiffstats
path: root/save-git.c
diff options
context:
space:
mode:
Diffstat (limited to 'save-git.c')
-rw-r--r--save-git.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/save-git.c b/save-git.c
index 990364eba..3ec610b39 100644
--- a/save-git.c
+++ b/save-git.c
@@ -111,10 +111,6 @@ static void save_tags(struct membuffer *b, struct tag_entry *tags)
if (!tags)
return;
- /* The first entry is a dummy, because people don't understand pointers to pointers */
- tags = tags->next;
- if (!tags)
- return;
put_string(b, "tags");
while (tags) {
show_utf8(b, sep, tags->tag->source ? : tags->tag->name, "");