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

Commit 59a33a01 authored by Narayan Kamath's avatar Narayan Kamath Committed by Android Git Automerger
Browse files

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

* commit 'dbc2d87a':
  Installd: Fix delete_code_cache() clearing the wrong cache dir
parents 806334aa dbc2d87a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;