We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210dc61 commit 1c4e4a6Copy full SHA for 1c4e4a6
Framework/Core/include/Framework/PluginManager.h
@@ -87,7 +87,7 @@ struct PluginManager {
87
#else
88
auto libraryName = fmt::format("lib{}.so", loadablePlugin.library);
89
#endif
90
- auto ret = uv_dlopen(libraryName.c_str(), &handle);
+ auto ret = uv_dlopen(loadablePlugin.library.empty() ? nullptr : libraryName.c_str(), &handle);
91
if (ret != 0) {
92
LOGP(error, "Could not load library {}", loadablePlugin.library);
93
LOG(error) << uv_dlerror(&handle);
0 commit comments