From edeb8dfcabc6d20be7cb6ab002df021aacaed439 Mon Sep 17 00:00:00 2001 From: sidecai Date: Thu, 6 Nov 2025 14:05:08 +0800 Subject: [PATCH] GetAppsInitiatingLocation Signed-off-by: sidecai --- interfaces/inner_api/include/app_identity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/inner_api/include/app_identity.h b/interfaces/inner_api/include/app_identity.h index 9d37590ed..da35c2d06 100644 --- a/interfaces/inner_api/include/app_identity.h +++ b/interfaces/inner_api/include/app_identity.h @@ -115,7 +115,7 @@ public: static AppIdentity* Unmarshalling(Parcel& parcel) { - auto identity = std::make_shared(); + auto identity = new AppIdentity(); identity->ReadFromParcel(parcel); return identity; }