diff --git a/include/androidfw/AssetManager.h b/include/androidfw/AssetManager.h index cfe8a99490a..0cfc2700aab 100644 --- a/include/androidfw/AssetManager.h +++ b/include/androidfw/AssetManager.h @@ -236,9 +236,11 @@ class AssetManager : public AAssetManager { private: struct asset_path { + asset_path() : path(""), type(kFileTypeRegular), idmap(""), isSystemOverlay(false) {} String8 path; FileType type; String8 idmap; + bool isSystemOverlay; }; Asset* openInPathLocked(const char* fileName, AccessMode mode,