Skip to content
Snippets Groups Projects
Commit c292e76c authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

Update to skip empty paths in zipr-plugin-path

parent 13d83395
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,9 @@ void ZiprPluginManager_t::open_plugins
auto loadedBasenames = set<string>();
for(const auto dir : ziprPluginDirs)
{
/* skip empty directories in list. */
if(dir == "" )
continue;
const auto dp = opendir(dir.c_str());
if(dp == nullptr)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment