Merge "Installd: Fix delete_code_cache() clearing the wrong cache dir"

This commit is contained in:
Narayan Kamath 2015-07-01 13:03:55 +00:00 committed by Gerrit Code Review
commit dbc2d87a74

View File

@ -299,7 +299,7 @@ int delete_cache(const char *uuid, const char *pkgname, userid_t userid)
int delete_code_cache(const char *uuid, const char *pkgname, userid_t userid)
{
std::string _codecachedir(
create_package_data_path(uuid, pkgname, userid) + CACHE_DIR_POSTFIX);
create_package_data_path(uuid, pkgname, userid) + CODE_CACHE_DIR_POSTFIX);
const char* codecachedir = _codecachedir.c_str();
struct stat s;