Fixed a bug that caused the second plug-in DLL not to get extracted

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@677 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-09 18:59:13 +00:00
parent 3e33df5e0c
commit bc6494155b
5 changed files with 36 additions and 33 deletions

View file

@ -789,10 +789,6 @@ static int ExecuteEntry(entry *entries, int pos)
if (hres == S_FALSE || hres == S_OK)
{
HANDLE h;
#ifdef NSIS_CONFIG_PLUGIN_SUPPORT
if (!parms[0]) lstrcpy(buf,plugin);
else
#endif
process_string_fromtab(buf,parms[0]);
process_string_fromtab(buf2,parms[1]);
@ -1390,8 +1386,6 @@ static int ExecuteEntry(entry *entries, int pos)
// parms[0] = dll name
if (!*plugins_temp_dir) lstrcpy(plugins_temp_dir,g_usrvars[0]);
lstrcpy(plugin,plugins_temp_dir);
process_string_fromtab(plugin+lstrlen(plugins_temp_dir),parms[0]);
return 0;
#endif // NSIS_CONFIG_PLUGIN_SUPPORT
}