am f991771f: Merge "Use size_t* in AssetManager::createIdmap"
* commit 'f991771f81953f5d355eb905d05a784ed7287016': Use size_t* in AssetManager::createIdmap
This commit is contained in:
@@ -231,7 +231,7 @@ public:
|
||||
* corresponding overlay package.
|
||||
*/
|
||||
bool createIdmap(const char* targetApkPath, const char* overlayApkPath,
|
||||
uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, uint32_t* outSize);
|
||||
uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize);
|
||||
|
||||
private:
|
||||
struct asset_path
|
||||
|
||||
@@ -285,7 +285,7 @@ bool AssetManager::addOverlayPath(const String8& packagePath, int32_t* cookie)
|
||||
}
|
||||
|
||||
bool AssetManager::createIdmap(const char* targetApkPath, const char* overlayApkPath,
|
||||
uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, uint32_t* outSize)
|
||||
uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize)
|
||||
{
|
||||
AutoMutex _l(mLock);
|
||||
const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) };
|
||||
|
||||
Reference in New Issue
Block a user