summaryrefslogtreecommitdiff
path: root/libs/androidfw/ZipFileRO.cpp
diff options
context:
space:
mode:
author Pawan Wagh <waghpawan@google.com> 2024-06-05 16:51:10 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-06-05 16:51:10 +0000
commitdc2cfc8a10b8b74ec2c70f3b2d32aa9bf765de87 (patch)
tree4f1ce8b407442547c80a9c4d6855764284cbd11f /libs/androidfw/ZipFileRO.cpp
parent5d9d2631d1a6b25b315ffc55670e565e25a3fc9d (diff)
parent429a1d5926b2951bc34f41895b1fe6ceb602f8b2 (diff)
Merge changes from topic "unify_getentryinfo" into main
* changes: Fix usage of ZipFileRO::getEntryInfo Fix usage of ZipFileRO::getEntryInfo Combine ZipFileRO::getEntryInfo
Diffstat (limited to 'libs/androidfw/ZipFileRO.cpp')
-rw-r--r--libs/androidfw/ZipFileRO.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/libs/androidfw/ZipFileRO.cpp b/libs/androidfw/ZipFileRO.cpp
index 839c7b6fef37..10651cdaff33 100644
--- a/libs/androidfw/ZipFileRO.cpp
+++ b/libs/androidfw/ZipFileRO.cpp
@@ -119,14 +119,6 @@ ZipEntryRO ZipFileRO::findEntryByName(const char* entryName) const
* appear to be bogus.
*/
bool ZipFileRO::getEntryInfo(ZipEntryRO entry, uint16_t* pMethod,
- uint32_t* pUncompLen, uint32_t* pCompLen, off64_t* pOffset,
- uint32_t* pModWhen, uint32_t* pCrc32) const
-{
- return getEntryInfo(entry, pMethod, pUncompLen, pCompLen, pOffset, pModWhen,
- pCrc32, nullptr);
-}
-
-bool ZipFileRO::getEntryInfo(ZipEntryRO entry, uint16_t* pMethod,
uint32_t* pUncompLen, uint32_t* pCompLen, off64_t* pOffset,
uint32_t* pModWhen, uint32_t* pCrc32, uint16_t* pExtraFieldSize) const
{