summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWoongsuk Cho <ws77.cho@samsung.com>2024-04-16 13:20:11 +0900
committer조웅석/MDE Lab(SR)/삼성전자 <ws77.cho@samsung.com>2024-04-16 13:38:20 +0900
commit39f4af9f35a64d1143e47f4ad9f6f903b0014f9f (patch)
tree3755452497d7ac7a63da2d4c1e418ac0cec3c507
parentae652118dacfc0772706d7209a6fc8524904f14f (diff)
downloadlauncher-accepted/tizen_unified_x.tar.gz
launcher-accepted/tizen_unified_x.tar.bz2
launcher-accepted/tizen_unified_x.zip
check the target dll is an R2R image or not
-rw-r--r--NativeLauncher/tool/ni_common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/NativeLauncher/tool/ni_common.cc b/NativeLauncher/tool/ni_common.cc
index 36c2040..3b463cf 100644
--- a/NativeLauncher/tool/ni_common.cc
+++ b/NativeLauncher/tool/ni_common.cc
@@ -321,7 +321,7 @@ static ni_error_e getTargetDllList(const std::string& path, std::vector<std::str
}
auto func = [&fileList, opt](const std::string& f_path, const std::string& f_name) {
- if (isManagedAssembly(f_name) && !checkNIExistence(f_path, opt)) {
+ if (isManagedAssembly(f_name) && !isR2RImage(f_path) && !checkNIExistence(f_path, opt)) {
fileList.push_back(getAbsolutePath(f_path));
}
};