From c00de56063deaa3c27ab0f1778730e3f14e9a952 Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Fri, 6 Jun 2014 11:19:56 +0100 Subject: Fix build. Uncommitted changes from a rename. Change-Id: If1cac7104c436970f905eede683040ae79529292 --- libziparchive/zip_archive.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libziparchive/zip_archive.cc b/libziparchive/zip_archive.cc index a30b9a0..df5e3bd 100644 --- a/libziparchive/zip_archive.cc +++ b/libziparchive/zip_archive.cc @@ -382,9 +382,9 @@ static int32_t MapCentralDirectory0(int fd, const char* debug_file_name, const off64_t dir_offset = get4LE(eocd_ptr + kEOCDFileOffset); const uint16_t comment_length = get2LE(eocd_ptr + kEOCDCommentLen); - if (eocd_offset + comment_length + kEOCDCommentOffset != file_length) { + if (eocd_offset + comment_length + kEOCDComment != file_length) { ALOGW("Zip: %" PRId64 " extraneous bytes at the end of the central directory", - (int64_t) (file_length - (eocd_offset + comment_length + kEOCDCommentOffset))); + (int64_t) (file_length - (eocd_offset + comment_length + kEOCDComment))); return kInvalidFile; } -- cgit v1.1