summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/native_library_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/native_library_linux.cc b/base/native_library_linux.cc
index 1ec7aab..f103bba 100644
--- a/base/native_library_linux.cc
+++ b/base/native_library_linux.cc
@@ -13,7 +13,7 @@ namespace base {
// static
NativeLibrary LoadNativeLibrary(const FilePath& library_path) {
- void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY);
+ void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY|RTLD_DEEPBIND);
if (!dl)
NOTREACHED() << "dlopen failed: " << dlerror();