Fixed !addplugindir relative path bug (Bug #1264)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7264 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2021-05-02 14:29:05 +00:00
parent 11824508c7
commit 19de8e8803
2 changed files with 3 additions and 1 deletions

View file

@ -108,7 +108,7 @@ void Plugins::AddPluginsDir(const tstring &path, bool pe64, bool displayInfo)
if (!dir_reader::matches(*files_itr, _T("*.dll")))
continue;
const tstring plugin = path + PLATFORM_PATH_SEPARATOR_C + *files_itr;
const tstring plugin = get_full_path(path + PLATFORM_PATH_SEPARATOR_C + *files_itr);
GetExports(plugin, pe64, displayInfo);
}
}