Browse Source

archive.c: format_subst - fixed bogus argument to memchr

Also removed a superfluous test.

Signed-off-by: Ariel Badichi <abadichi@bezeqint.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Ariel Badichi 17 years ago committed by Junio C Hamano
parent
commit
75b7dfbdc0
  1. 4
      archive.c

4
archive.c

@ -16,9 +16,9 @@ static void format_subst(const struct commit *commit, @@ -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;


Loading…
Cancel
Save