commit | a6da20e2d29b3bbde0b1b9101727cd6ea8b9c9c4 | [log] [tgz] |
---|---|---|
author | Shinichiro Hamaji <hamaji@google.com> | Mon May 02 19:00:42 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon May 02 19:00:43 2016 +0000 |
tree | 867b733fc97f489bc348976bee4371c70cb6b418 | |
parent | 169cb4b68c6e69e1997cc5e2f9e555b010127bb5 [diff] | |
parent | d6c694b302954b9a9956e87ed37114bc61d284b4 [diff] |
Merge "Initialize an uninitialized field in ijar"
diff --git a/tools/ijar/zip.cc b/tools/ijar/zip.cc index ca5f396..3aa06db 100644 --- a/tools/ijar/zip.cc +++ b/tools/ijar/zip.cc
@@ -846,6 +846,7 @@ memcpy(entry->file_name, filename, file_name_length_); entry->extra_field_length = 0; entry->extra_field = (const u1 *)""; + entry->crc32 = 0; // Output the ZIP local_file_header: put_u4le(q, LOCAL_FILE_HEADER_SIGNATURE);