Merge "soong_zip: set local header crc for symlinks"

This commit is contained in:
Colin Cross 2018-06-23 03:23:30 +00:00 committed by Gerrit Code Review
commit cacbfd8f1f
1 changed files with 2 additions and 0 deletions

View File

@ -795,6 +795,8 @@ func (z *ZipWriter) writeSymlink(rel, file string) error {
return err
}
fileHeader.CRC32 = crc32.ChecksumIEEE([]byte(dest))
ze := make(chan *zipEntry, 1)
futureReaders := make(chan chan io.Reader, 1)
futureReader := make(chan io.Reader, 1)