archive/zip/writer.go says: ``` if records > uint16max || size > uint32max || offset > uint32max { ``` but each of these > should probably be >=. See the similar bug fixed in https://go-review.googlesource.com/#/c/18317/ for writing data files of size uint32max.
archive/zip/writer.go says:
but each of these > should probably be >=.
See the similar bug fixed in https://go-review.googlesource.com/#/c/18317/ for writing data files of size uint32max.