diff options
-rw-r--r-- | base/native_library_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/native_library_linux.cc b/base/native_library_linux.cc index d1494133..9967e475 100644 --- a/base/native_library_linux.cc +++ b/base/native_library_linux.cc @@ -14,7 +14,7 @@ namespace base { // static NativeLibrary LoadNativeLibrary(const FilePath& library_path) { - void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY|RTLD_DEEPBIND); + void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY); if (!dl) { LOG(ERROR) << "dlopen failed when trying to open " << library_path.value() << ": " << dlerror(); |