Re: [PATCH v3 5/5] archive-zip: support files bigger than 4GB

2017-04-24 Thread René Scharfe
Am 25.04.2017 um 06:46 schrieb Junio C Hamano: René Scharfe writes: diff --git a/t/t5004-archive-corner-cases.sh b/t/t5004-archive-corner-cases.sh index 0ac94b5cc9..a6875dfdb1 100755 --- a/t/t5004-archive-corner-cases.sh +++ b/t/t5004-archive-corner-cases.sh @@ -178,7 +178,7 @@ test_expect_suc

Re: [PATCH v3 5/5] archive-zip: support files bigger than 4GB

2017-04-24 Thread Junio C Hamano
René Scharfe writes: > diff --git a/t/t5004-archive-corner-cases.sh b/t/t5004-archive-corner-cases.sh > index 0ac94b5cc9..a6875dfdb1 100755 > --- a/t/t5004-archive-corner-cases.sh > +++ b/t/t5004-archive-corner-cases.sh > @@ -178,7 +178,7 @@ test_expect_success EXPENSIVE,UNZIP 'zip archive bigger

Re: [PATCH v3 5/5] archive-zip: support files bigger than 4GB

2017-04-24 Thread Keith Goldfarb
This set of patches works for my test case. Thanks, K.

[PATCH v3 5/5] archive-zip: support files bigger than 4GB

2017-04-24 Thread René Scharfe
Write a zip64 extended information extra field for big files as part of their local headers and as part of their central directory headers. Also write a zip64 version of the data descriptor in that case. If we're streaming then we don't know the compressed size at the time we write the header. De