Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
58875c20
Commit
58875c20
authored
Jun 24, 2013
by
Stephen Morris
Browse files
[2980] Get rid of RTLD_DEEPBIND
parent
2bde6510
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/hooks/library_manager.cc
View file @
58875c20
...
...
@@ -45,7 +45,7 @@ LibraryManager::openLibrary() {
// Open the library. We'll resolve names now, so that if there are any
// issues we don't bugcheck in the middle of apparently unrelated code.
dl_handle_
=
dlopen
(
library_name_
.
c_str
(),
RTLD_NOW
|
RTLD_
DEEPBIND
);
dl_handle_
=
dlopen
(
library_name_
.
c_str
(),
RTLD_NOW
|
RTLD_
LOCAL
);
if
(
dl_handle_
==
NULL
)
{
LOG_ERROR
(
hooks_logger
,
HOOKS_OPEN_ERROR
).
arg
(
library_name_
)
.
arg
(
dlerror
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment