commit | a8675f67e33bc7337d148358783b0fd138b501ff | [log] [tgz] |
---|---|---|
author | Jean-Baptiste Queru <jbq@google.com> | Wed Jul 29 14:25:07 2009 -0700 |
committer | Jean-Baptiste Queru <jbq@google.com> | Wed Jul 29 14:25:07 2009 -0700 |
tree | 71fb9d10330ef9161b3ead71d01074b3ef9e53ba | |
parent | cf4550c3198d6b3d92cdc52707fe70d7cc0caa9f [diff] [blame] |
donut snapshot
diff --git a/libs/utils/ZipUtils.cpp b/libs/utils/ZipUtils.cpp index 5df94cb..9138878 100644 --- a/libs/utils/ZipUtils.cpp +++ b/libs/utils/ZipUtils.cpp
@@ -210,7 +210,7 @@ LOGV("+++ reading %ld bytes (%ld left)\n", getSize, compRemaining); - int cc = fread(readBuf, getSize, 1, fp); + int cc = fread(readBuf, 1, getSize, fp); if (cc != (int) getSize) { LOGD("inflate read failed (%d vs %ld)\n", cc, getSize); @@ -341,4 +341,3 @@ return true; } -