aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/ladspa/ladspahost.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-01-02 11:04:10 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-01-02 11:04:10 +0000
commitaa1e750f1cb15152940c6b7fc8b148c05a05ffc2 (patch)
tree8adf355c1e172090c701523ce8459da31c1c6111 /src/plugins/Effect/ladspa/ladspahost.cpp
parent503774d20c79b0c359cf52a302560b8788d13d99 (diff)
downloadqmmp-aa1e750f1cb15152940c6b7fc8b148c05a05ffc2.tar.gz
qmmp-aa1e750f1cb15152940c6b7fc8b148c05a05ffc2.tar.bz2
qmmp-aa1e750f1cb15152940c6b7fc8b148c05a05ffc2.zip
ladspa: removed RTLD_DEEPBIND usage
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5956 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/ladspa/ladspahost.cpp')
-rw-r--r--src/plugins/Effect/ladspa/ladspahost.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Effect/ladspa/ladspahost.cpp b/src/plugins/Effect/ladspa/ladspahost.cpp
index 0875384bc..b1c4c7f8c 100644
--- a/src/plugins/Effect/ladspa/ladspahost.cpp
+++ b/src/plugins/Effect/ladspa/ladspahost.cpp
@@ -167,7 +167,7 @@ LADSPAEffect *LADSPAHost::load(const QString &filename, long int num)
LADSPAEffect *instance = new LADSPAEffect;
instance->fileName = filename;
- instance->library = dlopen(qPrintable(filename), RTLD_NOW | RTLD_DEEPBIND);
+ instance->library = dlopen(qPrintable(filename), RTLD_LAZY);
instance->handle = 0;
instance->handle2 = 0;
if (!instance->library)
@@ -368,7 +368,7 @@ void LADSPAHost::findPlugins(const QString &path_entry)
foreach(QFileInfo file, files)
{
- library = dlopen(qPrintable(file.absoluteFilePath ()), RTLD_NOW | RTLD_DEEPBIND);
+ library = dlopen(qPrintable(file.absoluteFilePath ()), RTLD_LAZY);
if (library == 0)
{
continue;