X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=sha1_file.c;h=956422ba4a5df5f46caaf85f10e4c85321439272;hb=c32c95916549331a581fadfa749c4322c14ccd78;hp=6dcae3882bf969cce9ae0a973a80abf76e3bb814;hpb=b1af9630d758e1728fc0008b3f18d90d8f87f4c5;p=git.git diff --git a/sha1_file.c b/sha1_file.c index 6dcae3882..956422ba4 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1267,7 +1267,8 @@ unsigned long unpack_object_header_buffer(const unsigned char *buf, while (c & 0x80) { if (len <= used || bitsizeof(long) <= shift) { error("bad object header"); - return 0; + size = used = 0; + break; } c = buf[used++]; size += (c & 0x7f) << shift;