Code

Sync with 1.7.9.3
authorJunio C Hamano <gitster@pobox.com>
Mon, 5 Mar 2012 22:29:50 +0000 (14:29 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Mar 2012 22:29:50 +0000 (14:29 -0800)
Documentation/git.txt
fast-import.c

index 22fadeb114b56249920a3338a6ceb7bd71615a79..b257d80c756cb7bf45ff1a57abd5488e3ad8f5f6 100644 (file)
@@ -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].
index 6cd19e580ba710d03682fcaff997fa7e0e555691..c1486cabbaa5f736f92994587fafd1f3afdf43af 100644 (file)
@@ -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;