X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=sha1_file.c;h=956422ba4a5df5f46caaf85f10e4c85321439272;hb=ab8a78084b7159d99dae2905e1a3ff04c1500a6d;hp=6dcae3882bf969cce9ae0a973a80abf76e3bb814;hpb=e14d63198867c545d0662afc00bf7be048bf2231;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;