diff options
author | 2014-10-01 23:38:25 +0000 | |
---|---|---|
committer | 2014-10-01 23:38:25 +0000 | |
commit | 1dcc75b2dbaef7c3bb3410187bf38cabca0d1aea (patch) | |
tree | b157e243e2c89f0899a862c99595ebeea9e54e5c /tools/aapt/ZipFile.cpp | |
parent | fe50cfd53309af4dd49e572bd4a3120ea1494029 (diff) | |
parent | 0ce259c2f69cefd09342a95fbbd4c1a63a0af484 (diff) |
am 0ce259c2: Merge "Frameworks/base: Fix AAPT warnings"
* commit '0ce259c2f69cefd09342a95fbbd4c1a63a0af484':
Frameworks/base: Fix AAPT warnings
Diffstat (limited to 'tools/aapt/ZipFile.cpp')
-rw-r--r-- | tools/aapt/ZipFile.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/aapt/ZipFile.cpp b/tools/aapt/ZipFile.cpp index 8057068dd685..36f4e73b3ac2 100644 --- a/tools/aapt/ZipFile.cpp +++ b/tools/aapt/ZipFile.cpp @@ -676,8 +676,6 @@ status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32) status_t ZipFile::copyDataToFp(FILE* dstFp, const void* data, size_t size, unsigned long* pCRC32) { - size_t count; - *pCRC32 = crc32(0L, Z_NULL, 0); if (size > 0) { *pCRC32 = crc32(*pCRC32, (const unsigned char*)data, size); |