diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-03-05 14:29:50 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-05 14:29:50 -0800 |
commit | 2980b0de1b387e4f9a63c50ca741271990c849d5 (patch) | |
tree | a1de1f592f7c95350b3e06aab3ac841f974021ff | |
parent | fsck doc: a minor typofix (diff) | |
parent | Git 1.7.9.3 (diff) | |
download | tgif-2980b0de1b387e4f9a63c50ca741271990c849d5.tar.xz |
Sync with 1.7.9.3
-rw-r--r-- | Documentation/git.txt | 3 | ||||
-rw-r--r-- | fast-import.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/git.txt b/Documentation/git.txt index 22fadeb114..b257d80c75 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -44,9 +44,10 @@ unreleased) version of git, that is available from 'master' branch of the `git.git` repository. Documentation for older releases are available here: -* link:v1.7.9.2/git.html[documentation for release 1.7.9.2] +* link:v1.7.9.3/git.html[documentation for release 1.7.9.3] * release notes for + link:RelNotes/1.7.9.3.txt[1.7.9.3], link:RelNotes/1.7.9.2.txt[1.7.9.2], link:RelNotes/1.7.9.1.txt[1.7.9.1], link:RelNotes/1.7.9.txt[1.7.9]. diff --git a/fast-import.c b/fast-import.c index 6cd19e580b..c1486cabba 100644 --- a/fast-import.c +++ b/fast-import.c @@ -2712,7 +2712,7 @@ static void parse_new_tag(void) /* Obtain the new tag name from the rest of our command */ sp = strchr(command_buf.buf, ' ') + 1; t = pool_alloc(sizeof(struct tag)); - t->next_tag = NULL; + memset(t, 0, sizeof(struct tag)); t->name = pool_strdup(sp); if (last_tag) last_tag->next_tag = t; |