Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b940c7e9 authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am 8e724905: am ad6731b0: Merge "Add debugging to ZipFileRO" into gingerbread

Merge commit '8e724905261bf4913bac75adc64fb08ed5ba8b7d'

* commit '8e724905261bf4913bac75adc64fb08ed5ba8b7d':
  Add debugging to ZipFileRO
parents bb5d3b21 ec8b61fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -508,8 +508,8 @@ bool ZipFileRO::getEntryInfo(ZipEntryRO entry, int* pMethod, size_t* pUncompLen,
        }

        if (get4LE(lfhBuf) != kLFHSignature) {
            LOGW("didn't find signature at start of lfh, offset=%ld\n",
                localHdrOffset);
            LOGW("didn't find signature at start of lfh, offset=%ld (got 0x%08lx, expected 0x%08x)\n",
                localHdrOffset, get4LE(lfhBuf), kLFHSignature);
            return false;
        }