Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5b21d18 authored by Daichi Hirono's avatar Daichi Hirono Committed by Android Git Automerger
Browse files

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

* commit 'fe608c5e':
  Fix directory path of codecache.
parents fd0fdaf7 fe608c5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;