am b5b21d18: am fe608c5e: Merge "Fix directory path of codecache." into mnc-dev

* commit 'b5b21d1837ba2039293feb283117e8ee441ec2a8':
  Fix directory path of codecache.
This commit is contained in:
Daichi Hirono 2015-06-30 04:34:50 +00:00 committed by Android Git Automerger
commit ad3d789378
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,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_data_user_package_path(uuid, userid, pkgname) + CACHE_DIR_POSTFIX);
create_data_user_package_path(uuid, userid, pkgname) + CODE_CACHE_DIR_POSTFIX);
const char* codecachedir = _codecachedir.c_str();
struct stat s;