From c24930eef189af4799b463f81f2b11c7c3855096 Mon Sep 17 00:00:00 2001 From: Zheng Yongjun Date: Fri, 11 Mar 2022 16:24:11 +0800 Subject: [PATCH] =?UTF-8?q?app=20=E6=95=B0=E6=8D=AE=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E7=9A=84=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Zheng Yongjun --- src/appspawn_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/appspawn_server.cpp b/src/appspawn_server.cpp index 0d5bd89a..1782152e 100644 --- a/src/appspawn_server.cpp +++ b/src/appspawn_server.cpp @@ -609,6 +609,7 @@ int32_t AppSpawnServer::DoAppSandboxMount(const ClientSocket::AppProperty *appPr std::string oriInstallPath = "/data/app/el1/bundle/public/"; std::string oriel1DataPath = "/data/app/el1/" + currentUserId + "/base/"; std::string oriel2DataPath = "/data/app/el2/" + currentUserId + "/base/"; + std::string oriel2DataBasePath = "/data/app/el2/" + currentUserId + "/base/"; std::string oriDatabasePath = "/data/app/el2/" + currentUserId + "/database/"; const std::string oriappdataPath = "/data/accounts/account_0/appdata/"; std::string destDatabasePath = rootPath + "/data/storage/el2/database"; @@ -630,7 +631,6 @@ int32_t AppSpawnServer::DoAppSandboxMount(const ClientSocket::AppProperty *appPr mountMap[destInstallPath] = oriInstallPath; mountMap[destel1DataPath] = oriel1DataPath; mountMap[destel2DataPath] = oriel2DataPath; - mountMap[destappdataPath] = oriappdataPath; std::map::iterator iter; for (iter = mountMap.begin(); iter != mountMap.end(); ++iter) { -- Gitee