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

@ -20,6 +20,8 @@ Unicode is now the default.
\b Fixed Unicode compiler crash (\W{http://sf.net/p/nsis/bugs/1254}{bug #1254}, \W{http://sf.net/p/nsis/patches/300}{patch #300})
\b Fixed !addplugindir relative path bug (\W{http://sf.net/p/nsis/bugs/1264}{bug #1264}
\S2{} Translations
\b Updated Corsican\#{(forum)} and Japanese (maboroshin PR\#{github.com/maboroshin})

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);
}
}