Merge "Fix directory path of codecache." into mnc-dev

This commit is contained in:
Daichi Hirono 2015-06-30 04:01:51 +00:00 committed by Android (Google) Code Review
commit fe608c5e3c

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) int delete_code_cache(const char *uuid, const char *pkgname, userid_t userid)
{ {
std::string _codecachedir( 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(); const char* codecachedir = _codecachedir.c_str();
struct stat s; struct stat s;