summaryrefslogtreecommitdiff
path: root/libdexfile/external/dex_file_supp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libdexfile/external/dex_file_supp.cc')
-rw-r--r--libdexfile/external/dex_file_supp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdexfile/external/dex_file_supp.cc b/libdexfile/external/dex_file_supp.cc
index 63dec1c336..6313afea06 100644
--- a/libdexfile/external/dex_file_supp.cc
+++ b/libdexfile/external/dex_file_supp.cc
@@ -65,10 +65,10 @@ bool TryLoadLibdexfileExternal([[maybe_unused]] std::string* err_msg) {
// Check which version is already loaded to avoid loading both debug and
// release builds. We might also be backtracing from separate process, in
// which case neither is loaded.
- const char* so_name = "libdexfiled_external.so";
+ const char* so_name = "libdexfiled.so";
void* handle = dlopen(so_name, RTLD_NOLOAD | RTLD_NOW | RTLD_NODELETE);
if (handle == nullptr) {
- so_name = "libdexfile_external.so";
+ so_name = "libdexfile.so";
handle = dlopen(so_name, RTLD_NOW | RTLD_GLOBAL | RTLD_NODELETE);
}
if (handle == nullptr) {