Merge "Remove usage of mFileName in ObbInfo"

This commit is contained in:
Treehugger Robot
2023-05-08 22:44:34 +00:00
committed by Gerrit Code Review
2 changed files with 1 additions and 7 deletions

View File

@@ -43,10 +43,6 @@ public:
bool removeFrom(const char* filename);
bool removeFrom(int fd);
const char* getFileName() const {
return mFileName;
}
const String8 getPackageName() const {
return mPackageName;
}
@@ -127,8 +123,6 @@ private:
/* The encryption salt. */
unsigned char mSalt[8];
const char* mFileName;
size_t mFooterStart;
bool parseObbFile(int fd);

View File

@@ -86,7 +86,7 @@ protected:
return nullptr;
}
String16 fileName(obbFile->getFileName());
String16 fileName(canonicalPath);
String16 packageName(obbFile->getPackageName());
size_t length;
const unsigned char* salt = obbFile->getSalt(&length);