From ecc82fcf2ee8e8f6a24cd84f0fee6902aa6980fb Mon Sep 17 00:00:00 2001 From: mmorozov Date: Mon, 23 Jun 2025 13:08:02 +0300 Subject: [PATCH] Fix public descriptors Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/ICGGVC Signed-off-by: mmorozov Change-Id: I05813507661b5326a2a0ab0a01d889ab23a10983 --- frameworks/native/runtime/ets_runtime.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/frameworks/native/runtime/ets_runtime.cpp b/frameworks/native/runtime/ets_runtime.cpp index e5c0886feaa..e56db0ab4a6 100644 --- a/frameworks/native/runtime/ets_runtime.cpp +++ b/frameworks/native/runtime/ets_runtime.cpp @@ -513,6 +513,7 @@ std::unique_ptr ETSRuntime::LoadEtsModule(const std::string modulePath = BUNDLE_INSTALL_PATH + moduleName_ + MERGE_ABC_PATH; std::string entryPath = EntryPathManager::GetInstance().GetEntryPath(srcEntrance); + std::replace(entryPath.begin(), entryPath.end(), '/', '.'); void *cls = nullptr; void *obj = nullptr; void *ref = nullptr; -- Gitee