aboutsummaryrefslogtreecommitdiffstats
path: root/linker/dlfcn.cpp
diff options
context:
space:
mode:
authorDmitriy Ivanov <dimitry@google.com>2014-11-03 22:12:19 -0800
committerDmitriy Ivanov <dimitry@google.com>2014-11-03 22:15:29 -0800
commit9d3382d97a2cdc8c8f78c7825ece16f09292fc36 (patch)
treee257b71f2b37be720ec7eb483135e97100e732f1 /linker/dlfcn.cpp
parent69c5d108a5cb44167a04d42ffdad6a39648ed235 (diff)
downloadandroid_bionic-9d3382d97a2cdc8c8f78c7825ece16f09292fc36.tar.gz
android_bionic-9d3382d97a2cdc8c8f78c7825ece16f09292fc36.tar.bz2
android_bionic-9d3382d97a2cdc8c8f78c7825ece16f09292fc36.zip
Revert "Fix dlsym() to take into account RTLD_GLOBAL/LOCAL"
This reverts commit c85e82dde5c4b2accc50a9e17740b9005dfbae6a. Bug: 18222321 Bug: 18211780 Change-Id: I32f4048bd5ea85dc8a3dfccce8cf141b241ab692
Diffstat (limited to 'linker/dlfcn.cpp')
-rw-r--r--linker/dlfcn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/dlfcn.cpp b/linker/dlfcn.cpp
index 367179d8d..3eb5bea22 100644
--- a/linker/dlfcn.cpp
+++ b/linker/dlfcn.cpp
@@ -232,7 +232,7 @@ static unsigned g_libdl_chains[] = { 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0 };
static unsigned g_libdl_chains[] = { 0, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
#endif
-static soinfo __libdl_info("libdl.so", nullptr, 0, RTLD_GLOBAL);
+static soinfo __libdl_info("libdl.so", nullptr, 0);
// This is used by the dynamic linker. Every process gets these symbols for free.
soinfo* get_libdl_info() {