summaryrefslogtreecommitdiffhomepage
path: root/api
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-22 13:24:54 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-23 00:05:15 +0200
commit7a1c13fae65cb8d19201f231ff190c69367d7968 (patch)
treee1833572b1c7238706279df02abe73db0a899ae7 /api
parentf2f583797d1723b443bf370ec5b7b133ad83b9fa (diff)
api/plugins: try not avoiding dlclose(3)
Diffstat (limited to 'api')
-rw-r--r--api/plugin-support.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-support.hpp b/api/plugin-support.hpp
index 8b20d211..b1a6fcb0 100644
--- a/api/plugin-support.hpp
+++ b/api/plugin-support.hpp
@@ -63,7 +63,7 @@ struct dylib final {
return;
handle = new QLibrary(filename);
- handle->setLoadHints(QLibrary::PreventUnloadHint | handle->loadHints());
+ //handle->setLoadHints(QLibrary::PreventUnloadHint | handle->loadHints());
struct _foo {
static bool die(QLibrary*& l, bool failp)