From 0701255c46bc734f4da842b2d97706d912c33705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=AC=A3=E5=AE=87?= Date: Fri, 22 Nov 2024 19:30:19 +0800 Subject: [PATCH] =?UTF-8?q?fix=20switch=20case=20=E7=BC=BA=E5=B0=91break?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 张欣宇 Change-Id: I2723f6a58cc776a59d1892d99abdf5ef83ff6d13 --- .../inner_api/appexecfwk_core/src/bundlemgr/bundle_mgr_host.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interfaces/inner_api/appexecfwk_core/src/bundlemgr/bundle_mgr_host.cpp b/interfaces/inner_api/appexecfwk_core/src/bundlemgr/bundle_mgr_host.cpp index c3a8e0aab..631a46ca4 100644 --- a/interfaces/inner_api/appexecfwk_core/src/bundlemgr/bundle_mgr_host.cpp +++ b/interfaces/inner_api/appexecfwk_core/src/bundlemgr/bundle_mgr_host.cpp @@ -611,6 +611,7 @@ int BundleMgrHost::OnRemoteRequest(uint32_t code, MessageParcel &data, MessagePa break; case static_cast(BundleMgrInterfaceCode::GET_COMPATIBLED_DEVICE_TYPE): errCode = HandleGetCompatibleDeviceType(data, reply); + break; case static_cast(BundleMgrInterfaceCode::GET_BUNDLE_NAME_BY_APP_ID_OR_APP_IDENTIFIER): errCode = HandleGetBundleNameByAppId(data, reply); break;