Fixed System plugin GUID type output bug on Win98

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6625 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2015-10-16 20:50:06 +00:00
parent 70ef520055
commit 37c81f74f8
2 changed files with 3 additions and 1 deletions

View file

@ -1063,7 +1063,7 @@ void ParamsOut(SystemProc *proc)
#else
{
WCHAR guidstrbuf[39];
int guidcch = StringFromGUID2(*((REFGUID*)place), guidstrbuf, g_stringsize);
int guidcch = StringFromGUID2(*((REFGUID*)place), guidstrbuf, 39);
WideCharToMultiByte(CP_ACP, 0, guidstrbuf, guidcch, realbuf, g_stringsize, NULL, NULL);
}
#endif

View file

@ -12,6 +12,8 @@ Released on ? ?th, 201?
\S2{} Minor Changes
\b Fixed System plugin GUID type output bug on Win98
\b !system and !execute now provide a empty StdIn pipe to work around bugs in some Windows utilities
\b MakeNSISW now uses WinInet when checking for updates