diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-22 23:37:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-22 23:37:06 -0700 |
commit | d6958a1a32814af69a7571daa45252018c61f969 (patch) | |
tree | 355fe5cdd4749e67d8979f80f7dcdc649b9aba41 /archive.c | |
parent | Amend git-push refspec documentation (diff) | |
parent | svn-git: Use binmode for reading/writing binary rev maps (diff) | |
download | tgif-d6958a1a32814af69a7571daa45252018c61f969.tar.xz |
Merge branch 'maint-1.5.4' into maint
* maint-1.5.4:
svn-git: Use binmode for reading/writing binary rev maps
diff options documentation: refer to --diff-filter in --name-status
git-svn bug with blank commits and author file
archive.c: format_subst - fixed bogus argument to memchr
copy.c: copy_fd - correctly report write errors
gitattributes: Fix subdirectory attributes specified from root directory
Diffstat (limited to 'archive.c')
-rw-r--r-- | archive.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,9 +16,9 @@ static void format_subst(const struct commit *commit, const char *b, *c; b = memmem(src, len, "$Format:", 8); - if (!b || src + len < b + 9) + if (!b) break; - c = memchr(b + 8, '$', len - 8); + c = memchr(b + 8, '$', (src + len) - b - 8); if (!c) break; |