diff options
author | vichang <vichang@google.com> | 2019-02-19 10:14:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-02-19 10:14:31 +0000 |
commit | 54c864052bc714bb68f6a9f9f5bb3da597f0c573 (patch) | |
tree | e1b47c65d5ab0d9005c51d249cf800d68dfda445 /linker/linker.cpp | |
parent | a60488109cda997dfd83832731c8527feaa2825e (diff) | |
parent | af12c94e79a724e8c9edb07963a97e9b078f3e79 (diff) |
Merge "Redirect /system/lib/libicuuc.so regardless of duplication in /system"
Diffstat (limited to 'linker/linker.cpp')
-rw-r--r-- | linker/linker.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp index ed84a4654..8a70ca9a2 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -2171,9 +2171,13 @@ void* do_dlopen(const char* name, int flags, new_name); // Some APEXs could be optionally disabled. Only translate the path // when the old file is absent and the new file exists. + // TODO(b/124218500): Re-enable it once app compat issue is resolved + /* if (file_exists(name)) { LD_LOG(kLogDlopen, "dlopen %s exists, not translating", name); - } else if (!file_exists(new_name)) { + } else + */ + if (!file_exists(new_name)) { LD_LOG(kLogDlopen, "dlopen %s does not exist, not translating", new_name); } else { |