summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--simpleperf/read_apk.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/simpleperf/read_apk.cpp b/simpleperf/read_apk.cpp
index 9efd0a98..fd0e0f70 100644
--- a/simpleperf/read_apk.cpp
+++ b/simpleperf/read_apk.cpp
@@ -120,7 +120,6 @@ std::unique_ptr<EmbeddedElf> ApkInspector::FindElfInApkByNameWithoutCache(
return nullptr;
}
if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) {
- LOG(ERROR) << "shared library " << entry_name << " in " << apk_path << " is compressed";
return nullptr;
}
return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, entry_name, zentry.offset,