commit | 380635abec36b4a99f6937116dfefc33a4bec172 | [log] [tgz] |
---|---|---|
author | Chih-hung Hsieh <chh@google.com> | Tue Jan 10 18:46:09 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Jan 10 18:46:09 2023 +0000 |
tree | d70f6b87a5b97f96271f07f1bc7c68582f186550 | |
parent | 0f8236bb249ebd27c1fac9f361e72ddd078b135c [diff] | |
parent | fed64e390fd0459cdfafa22213c08d43614c74d1 [diff] |
Merge "Fix uninitialized value warnings."
diff --git a/tools/zipalign/ZipFile.cpp b/tools/zipalign/ZipFile.cpp index f2f65a6..ff15b15 100644 --- a/tools/zipalign/ZipFile.cpp +++ b/tools/zipalign/ZipFile.cpp
@@ -372,7 +372,7 @@ status_t result = OK; long lfhPosn, startPosn, endPosn, uncompressedLen; FILE* inputFp = NULL; - uint32_t crc; + uint32_t crc = 0; time_t modWhen; if (mReadOnly)